Make the mobile menu button light when dark theme is on

This commit is contained in:
2025-01-05 20:28:17 -08:00
parent c3adbae5eb
commit 8279c42497

View File

@ -2,6 +2,11 @@
--text-color: #383c3f;
}
body {
font-family: "Noto Sans", sans-serif;
margin: 0;
}
@media (prefers-color-scheme: dark) {
:root {
--text-color: white;
@ -11,11 +16,6 @@
}
}
body {
font-family: "Noto Sans", sans-serif;
margin: 0;
}
div#particle-container {
position: fixed;
top: 0;
@ -98,6 +98,12 @@ nav button.responsive-button {
cursor: pointer;
}
@media (prefers-color-scheme: dark) {
nav button.responsive-button img {
filter: invert(1);
}
}
nav div.inline {
display: flex;
}