mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-26 05:02:48 +00:00
18 lines
294 B
SCSS
18 lines
294 B
SCSS
@use "sass:map";
|
|
@mixin dark {
|
|
@if map.get(jekyll-config(), "issue") {
|
|
@content
|
|
} @else {
|
|
@media (prefers-color-scheme: dark) {
|
|
@content
|
|
}
|
|
}
|
|
};
|
|
|
|
@mixin noissue {
|
|
@if map.get(jekyll-config(), "issue") {
|
|
} @else {
|
|
@content
|
|
}
|
|
};
|