Skip to content

Commit

Permalink
🐛 docs fix missing css
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhir committed Dec 20, 2024
1 parent 37b7a66 commit 3140e66
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/.vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,24 @@
--muc-logo-filter: invert(0);
}

.dark {
--muc-logo-filter: invert(1);
}

/* Enables footer on all pages instead of only the home page */
footer.VPFooter {
display: block !important;
z-index: 100 !important;
}

@media all and (max-width: 450px) {
/* Show only partial logo on mobile */
.VPNav div.logo a {
overflow: hidden;
width: 23px;
}
.VPNav div.logo a img {
object-fit: cover;
object-position: left;
}
}

0 comments on commit 3140e66

Please sign in to comment.