fix color schema

This commit is contained in:
jxxghp
2023-07-02 10:41:16 +08:00
parent 3b3d7f9350
commit 6ad96c51ff
3 changed files with 18 additions and 6 deletions

View File

@@ -9,11 +9,17 @@ html {
}
body {
background-color: var(--v-theme-background);
background: #F4F5FA;
overscroll-behavior-y: contain;
--webkit-overflow-scrolling: touch;
}
@media (prefers-color-scheme: dark) {
body {
background: #28243D;
}
}
body,
#app,
.v-application {