Skip to content

Commit

Permalink
chore(nbs): set min width for search
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Jul 20, 2024
1 parent 0642924 commit 5ea6e67
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions nbs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,13 @@ body {
font-size: 1.7rem;
margin: 0.4rem;
}
@media (max-width: 415px) {
#quarto-search {
display: none;
}
}
@media (min-width: 415px) {
#quarto-search {
display: block;
}
}

0 comments on commit 5ea6e67

Please sign in to comment.