Compare commits

...

2 Commits

Author SHA1 Message Date
Neil Hanlon cf37118113
fix trailing whitespace 2024-02-19 16:55:48 -05:00
Neil Hanlon 95e2d48c7a
fix: only apply gradient when the sidebar is out 2024-02-19 16:54:56 -05:00
2 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
site/
.cache/

View File

@ -1,6 +1,8 @@
:root {
.md-nav__title[for="__drawer"] {
background: linear-gradient(135deg, #10b981 0%, #1055b9 100%);
@media screen and (max-width: 76.234375em) {
.md-nav__title[for="__drawer"] {
background: linear-gradient(135deg, #10b981 0%, #1055b9 100%);
}
}
}