fix caret styles

Cause the reset at the end overrides it, so move it after
This commit is contained in:
2 * r + 2 * t 2025-01-27 22:25:17 +11:00
parent e06e29eeab
commit fee7bf492e
2 changed files with 8 additions and 10 deletions

View file

@ -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;
}

View file

@ -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);
}
}