Adding a dark background for dark mode users

This commit is contained in:
FrogDesk Strategy 2022-09-05 12:57:09 -06:00 committed by GitHub
parent 409681d89d
commit a311a5f730
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2335,3 +2335,9 @@ svg.button {
display: none;
}
}
@media (prefers-color-scheme: dark) {
body {
background: #25252a;
}
}