fix(ui): Don't override body/html background-color (#1002)

* fix(ui): Don't override body/html background-color

* fix(ui): Don't override body/html background-color
This commit is contained in:
TwiN 2025-02-10 21:45:44 -05:00 committed by GitHub
parent 64b4c53b4e
commit 18e90d0e63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -6,6 +6,10 @@
background-color: #28a745; background-color: #28a745;
} }
html:not(.dark) body {
background-color: #f7f9fb;
}
html { html {
height: 100%; height: 100%;
} }
@ -16,10 +20,6 @@ body {
min-height: 100vh; min-height: 100vh;
} }
html, body {
background-color: #f7f9fb;
}
#global { #global {
margin-top: 0 !important; margin-top: 0 !important;
} }

File diff suppressed because one or more lines are too long