Skip to content

Commit

Permalink
fix(theme mode): SCSS syntax error (#588)
Browse files Browse the repository at this point in the history
Fixes #588
  • Loading branch information
cotes2020 committed May 29, 2022
1 parent 91308ae commit 76a1b6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _sass/addon/commons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
html {
@media (prefers-color-scheme: light) {
&:not([data-mode]),
[data-mode=light] {
&[data-mode=light] {
@include light-scheme;
}

Expand Down
2 changes: 1 addition & 1 deletion _sass/addon/syntax.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
html {
@media (prefers-color-scheme: light) {
&:not([data-mode]),
[data-mode=light] {
&[data-mode=light] {
@include light-syntax;
}

Expand Down

0 comments on commit 76a1b6a

Please sign in to comment.