5 lines
64 B
SCSS
5 lines
64 B
SCSS
@mixin in-dark-mode() {
|
|
&[theme='dark'] {
|
|
@content;
|
|
}
|
|
}
|