fix(theme mode): `SCSS` syntax error (#588)

Fixes #588
This commit is contained in:
Cotes Chung 2022-05-30 05:50:46 +08:00
parent 91308ae567
commit 76a1b6a068
No known key found for this signature in database
GPG Key ID: 0D9E54843167A808
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
html {
@media (prefers-color-scheme: light) {
&:not([data-mode]),
[data-mode=light] {
&[data-mode=light] {
@include light-scheme;
}

View File

@ -8,7 +8,7 @@
html {
@media (prefers-color-scheme: light) {
&:not([data-mode]),
[data-mode=light] {
&[data-mode=light] {
@include light-syntax;
}