diff options
author | Alex Shnitman <alexta69@gmail.com> | 2021-12-11 16:48:40 +0200 |
---|---|---|
committer | Alex Shnitman <alexta69@gmail.com> | 2021-12-11 16:48:40 +0200 |
commit | ddf258855d8818287462e969eee42773afa41aa5 (patch) | |
tree | 1f2755ea866f926536c068500461d07c276fcd1d | |
parent | Merge pull request #87 from PikuZheng/patch-1 (closes #81) (diff) | |
download | metube-ddf258855d8818287462e969eee42773afa41aa5.tar.gz metube-ddf258855d8818287462e969eee42773afa41aa5.tar.bz2 metube-ddf258855d8818287462e969eee42773afa41aa5.zip |
fix sass syntax for dark mode
-rw-r--r-- | ui/src/styles.sass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/src/styles.sass b/ui/src/styles.sass index cb052ca..c54d06a 100644 --- a/ui/src/styles.sass +++ b/ui/src/styles.sass @@ -1,4 +1,8 @@ /* You can add global styles to this file, and also import other style files */ -@media(prefers-color-scheme: dark){html{filter:invert(1) hue-rotate(180deg)};} + +@media(prefers-color-scheme: dark) + html + filter: invert(1) hue-rotate(180deg) + /* Importing Bootstrap SCSS file. */ @import '~bootstrap/scss/bootstrap' |