11 lines
254 B
SCSS
11 lines
254 B
SCSS
@mixin dark-mode {
|
|
// Ensure animations aren't for the initial transition
|
|
html.dark-mode-animate & {
|
|
transition-duration: 0.5s;
|
|
transition-property: color, background-color, border-color, filter;
|
|
}
|
|
|
|
html.dark-mode & {
|
|
@content;
|
|
}
|
|
}
|