Skip to content

Commit

Permalink
add media query to hide select button on desktop
Browse files Browse the repository at this point in the history
Relates #215
  • Loading branch information
emaggy committed Sep 20, 2019
1 parent 1df0d72 commit 46339b5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions public/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,14 @@ h2 {
font-style: oblique;
padding: 1px;
}

@media screen and (max-width: 600px) {
.select-button {
display: inline-block;
}
}
@media screen and (min-width: 600px) {
.select-button {
display: none;
}
}

0 comments on commit 46339b5

Please sign in to comment.