💥 fix: correctly use centerbox with gtkbuilder types, fix styles

also re-added some windows to the windows list(they were causing issues before)
This commit is contained in:
retrozinndev
2025-07-07 21:58:34 -03:00
parent 246698c642
commit 2fb3b68204
15 changed files with 144 additions and 199 deletions
+9 -11
View File
@@ -1,17 +1,15 @@
@use "sass:color";
@use "./wal";
@use "./functions" as funs;
@use "colors";
.osd {
background: funs.toRGB(color.change($color: wal.$background, $alpha: 65%));
padding: 16px;
background: rgba(colors.$bg-translucent-secondary, .6);
padding: 14px 14px;
border-radius: 24px;
min-width: 180px;
.icon {
margin-right: 10px;
font-size: 24px;
-gtk-icon-size: 24px;
}
.volume {
@@ -25,16 +23,16 @@
levelbar {
trough block {
border-radius: 2px;
background: funs.toRGB(color.adjust($color: wal.$color1, $lightness: -36%));
border-radius: 3px;
background: colors.$bg-primary;
&.empty {
border-radius: 2px;
border-radius: 3px;
}
&.filled {
padding: 3px 0;
background: wal.$color1;
min-height: 8px;
background: colors.$bg-secondary;
}
}
}