Ensure we stick to dark background in dark mode

This commit is contained in:
Johannes Zellner
2024-10-18 18:33:38 +02:00
parent fac5d3c07b
commit a3a807f22c

View File

@@ -9,6 +9,12 @@ html, body {
color: var(--pankow-text-color);
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
.shadow {
box-shadow: 0 2px 5px rgba(0,0,0,.1);
}