21 lines
369 B
SCSS
21 lines
369 B
SCSS
// Copyright (c) 2019 Florian Klampfer <https://qwtel.com/>
|
|
|
|
@import "pro/dark-mode";
|
|
|
|
@media screen and (prefers-color-scheme: light) {
|
|
body {
|
|
@include light-mode();
|
|
}
|
|
}
|
|
|
|
@media screen and (prefers-color-scheme: dark) {
|
|
body {
|
|
@include dark-mode();
|
|
}
|
|
|
|
.tippy-content {
|
|
-webkit-font-smoothing: initial;
|
|
-moz-osx-font-smoothing: initial;
|
|
}
|
|
}
|