New Light/Dark theme mixins

This commit is contained in:
Ken Powers 2019-04-22 14:25:37 -04:00 committed by Scott Nonnenberg
parent 13ad4abaea
commit 8c8856785b
1 changed files with 10 additions and 0 deletions

View File

@ -28,3 +28,13 @@
@include color-svg($svg, black);
}
}
@mixin light-theme() {
@content;
}
@mixin dark-theme() {
body.dark-theme & {
@content;
}
}