Skip to content

Commit

Permalink
feat(docsify): improve nav menu responsivness
Browse files Browse the repository at this point in the history
  • Loading branch information
seballot committed Sep 26, 2022
1 parent 6772585 commit 0747d97
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions styles/documentation.css
Expand Up @@ -236,8 +236,12 @@ footer {
text-align: center;
}

/* Mobile */

/* Responsivness */
@media (min-width: 1201px) and (max-width: 1350px) {
.app-nav li {
padding: 0 .6rem;
}
}
@media (min-width: 1201px) {
.app-nav > ul {
display: flex !important;
Expand All @@ -248,6 +252,10 @@ footer {
.app-nav > ul #back {
display: none;
}
/* li that contains back link for mobile */
.app-nav > ul > li:first-child {
display: none;
}
.backdrop {
display: none;
}
Expand Down

0 comments on commit 0747d97

Please sign in to comment.