Skip to content

Commit 19c9d7e

Browse files
committed
👕 Fix lint errors
1 parent a7c192e commit 19c9d7e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/support/mixins/color-modes.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
// Allows CSS to be scoped to a specific color mode
22
@mixin color-mode($mode) {
33
@if $mode == light {
4-
:root, [data-color-mode="light"] {
4+
:root,
5+
[data-color-mode="light"] {
56
@content;
67
}
7-
} @else if $mode == dark {
8+
}
9+
@else if $mode == dark {
810
[data-color-mode="dark"] {
911
@content;
1012
}

0 commit comments

Comments
 (0)