mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-31 22:40:55 -08:00
Clean: SASS - Dark mixin
This commit is contained in:
parent
7a80769986
commit
abfe9027fa
11 changed files with 82 additions and 9 deletions
6
src/utils/_darkmode.scss
Normal file
6
src/utils/_darkmode.scss
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
@mixin Dark() {
|
||||
// -moz-toolbar-prefers-color-scheme is removed at v95, #250
|
||||
@media (-moz-toolbar-prefers-color-scheme: dark), (prefers-color-scheme: dark) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue