Fix dark mode

Fixes #43.
This commit is contained in:
Jonas Schäfer
2021-01-31 10:13:07 +01:00
parent cd4955cce8
commit f19270b276
2 changed files with 16 additions and 0 deletions

View File

@@ -1046,6 +1046,12 @@ pre.guru-meditation {
}
}
body#login {
.form-title {
color: $primary-800;
}
}
body > footer {
background-color: $gray-200;
color: $gray-800;

View File

@@ -183,3 +183,13 @@ div.form.layout-expanded .lwrap {
background-attachment: fixed;
background-size: cover;
}
/* dark mode */
@media (prefers-color-scheme: dark) {
div.form.layout-expanded .lwrap {
span {
background: $gray-200;
}
}
}