mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
Prevent white flash during loading screen
no longer have to deal with getting flashbanged every time! :D
This commit is contained in:
parent
d7f2798c76
commit
caf696a5ec
1 changed files with 5 additions and 0 deletions
|
@ -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 a new issue