9 lines
107 B
SCSS
9 lines
107 B
SCSS
@mixin light-theme() {
|
|
@content;
|
|
}
|
|
|
|
@mixin dark-theme() {
|
|
:global(.dark-theme) & {
|
|
@content;
|
|
}
|
|
}
|