Skip to content

Commit

Permalink
Move most recent media query to bottom of style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
SABaltz committed Mar 15, 2024
1 parent e4a8528 commit 4ef124d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,6 @@ input {
height: 150px;
}

/* 436 px is the exact point where the submit button stacks under the input form*/
/* Need a larger height due to the increased size of the stacked buttons*/
@media only screen and (max-width: 436px) {
#landForm {
height: 220px;
}
}

#loading-icon-wrapper {
display: none;
justify-content: center;
Expand Down Expand Up @@ -161,6 +153,14 @@ section.info {
}
}

/* 436 px is the exact point where the submit button stacks under the input form*/
/* Need a larger height due to the increased size of the stacked buttons*/
@media only screen and (max-width: 436px) {
#landForm {
height: 220px;
}
}

@keyframes spin {
0% {
transform: rotate(0deg);
Expand Down

0 comments on commit 4ef124d

Please sign in to comment.