diff options
| -rw-r--r-- | scss/widgets.scss | 10 | ||||
| -rw-r--r-- | style.scss | 8 |
2 files changed, 8 insertions, 10 deletions
diff --git a/scss/widgets.scss b/scss/widgets.scss index 9d57964..856960f 100644 --- a/scss/widgets.scss +++ b/scss/widgets.scss @@ -3,16 +3,6 @@ @use "lib"; @use "font"; -* { - selection { - background-color: color.change(scheme.$overlay2, $alpha: 0.3); - } - - & { - caret-color: scheme.$rosewater; - } -} - label.icon { @include font.icon; } @@ -1,3 +1,6 @@ +@use "sass:color"; +@use "scss/scheme"; + // Common widgets @use "scss/widgets"; @@ -11,4 +14,9 @@ * { all: unset; // Remove GTK theme styles + caret-color: scheme.$rosewater; + + selection { + background-color: color.change(scheme.$overlay2, $alpha: 0.3); + } } |