mirror of
https://github.com/dyzulk/raisen-app.git
synced 2026-01-26 13:22:00 +07:00
12 lines
127 B
SCSS
12 lines
127 B
SCSS
//
|
|
// Mixins: Dark Mode Controll
|
|
//
|
|
|
|
@mixin dark-mode {
|
|
@if $enable-dark-mode {
|
|
.dark-mode {
|
|
@content;
|
|
}
|
|
}
|
|
}
|