fix(web): Revert prevent flashing white background in dark mode on page load/reload (#19934) (#20122)

Revert "fix(web): prevent flashing white background in dark mode on page load/reload (#19934)"

This reverts commit 32f23b8d383fa6214f83c29150ca4d5cb97af068.
This commit is contained in:
Alex 2025-07-24 02:45:38 -05:00 committed by GitHub
parent f27bdf7523
commit 0051a9bba5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,11 +21,6 @@
html {
height: 100%;
width: 100%;
background-color: rgb(255, 255, 255);
}
html.dark {
background-color: rgb(10, 10, 10);
}
body,
@ -34,10 +29,6 @@
padding: 0;
}
body {
transition: background-color 0.15s ease;
}
@keyframes delayedVisibility {
to {
visibility: visible;