11 lines
169 B
SCSS
11 lines
169 B
SCSS
|
---
|
||
|
# Only the main Sass file needs front matter (the dashes are enough)
|
||
|
---
|
||
|
|
||
|
@import "light";
|
||
|
@import "base";
|
||
|
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
@import "dark";
|
||
|
}
|