Prevent white flash during loading screen
no longer have to deal with getting flashbanged every time! :D
This commit is contained in:
parent
f53d8b7e1d
commit
020c4f5788
|
@ -2,6 +2,11 @@ html {
|
|||
background-color: var(--bg);
|
||||
color: var(--fg);
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
--bg: rgb(17, 17, 27);
|
||||
}
|
||||
}
|
||||
|
||||
#splash {
|
||||
position: fixed;
|
||||
|
|
Loading…
Reference in New Issue