Skip to content

Commit

Permalink
docs(website): fix navbar on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
gpbl committed May 8, 2024
1 parent 05f5d65 commit b409d2a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -278,13 +278,15 @@ pre {
font-size: 0.75rem;
}

.navbar {
background: rgba(255, 255, 255, 0.6); /* Black with 60% opacity */
backdrop-filter: blur(10px);
}
@media (min-width: 997px) {
.navbar {
background: rgba(255, 255, 255, 0.6); /* Black with 60% opacity */
backdrop-filter: blur(10px);
}

html[data-theme="dark"] .navbar {
background: rgba(1, 1, 1, 0.6); /* Black with 60% opacity */
html[data-theme="dark"] .navbar {
background: rgba(1, 1, 1, 0.6); /* Black with 60% opacity */
}
}

div[class^="docRoot"],
Expand Down

0 comments on commit b409d2a

Please sign in to comment.