fix: only apply gradient when the sidebar is out

This commit is contained in:
Neil Hanlon 2024-02-19 16:54:03 -05:00
parent b20d3acae8
commit 7716c008e9
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 4 additions and 2 deletions

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%);
}
}
}