signal-desktop/sticker-creator/_mixins.scss
2019-12-17 12:28:46 -08:00

9 lines
107 B
SCSS

@mixin light-theme() {
@content;
}
@mixin dark-theme() {
:global(.dark-theme) & {
@content;
}
}