mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 11:57:34 -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);
|
background-color: var(--bg);
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
}
|
}
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
html {
|
||||||
|
--bg: rgb(17, 17, 27);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#splash {
|
#splash {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
Loading…
Reference in a new issue