a new start
This commit is contained in:
20
_sass/pro/_dark-mode-dynamic.scss
Normal file
20
_sass/pro/_dark-mode-dynamic.scss
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user