fix: dark/light theme fixes

This commit is contained in:
iCrawl
2022-09-07 18:39:02 +02:00
parent d8e774138d
commit 8d07ea9a62
4 changed files with 9 additions and 4 deletions

View File

@@ -15,16 +15,21 @@
html,
body {
height: 100%;
color-scheme: light;
}
#__next {
height: 100%;
}
.light [data-theme='dark'] {
[data-theme='dark'] {
display: none;
}
.dark [data-theme='dark'] {
display: block;
}
.dark [data-theme='light'] {
display: none;
}