Skip to content

Commit

Permalink
fix(nbs): auto-hide navigation
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Jul 28, 2024
1 parent 9c0f193 commit 4d94b0b
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions nbs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ body {
font-family: "Latin Modern Sans", sans-serif;
}
.navbar {
border-bottom: 1px solid #ede7e7;
border-bottom: 1px solid #000000;
}
.quarto-color-scheme-toggle .bi::before {
height: 1.6rem;
Expand All @@ -13,13 +13,16 @@ body {
font-size: 1.7rem;
margin: 0.4rem;
}
@media (max-width: 415px) {
#quarto-search {
@media (max-width: 435px) {
/* #quarto-search {
display: none;
} */
.quarto-navigation-tool {
display: none;
}
}
@media (min-width: 415px) {
#quarto-search {
@media (min-width: 435px) {
/* #quarto-search {
display: block;
}
} */
}

0 comments on commit 4d94b0b

Please sign in to comment.