signal-desktop/sticker-creator/_mixins.scss

10 lines
107 B
SCSS
Raw Normal View History

2019-12-17 20:25:57 +00:00
@mixin light-theme() {
@content;
}
@mixin dark-theme() {
:global(.dark-theme) & {
@content;
}
}