Fixed systray icons to have reactive sizing and volume icon to properly change when muted/unmuted.

This commit is contained in:
Jas Singh
2024-06-18 01:48:10 -07:00
parent d2d5d82ff1
commit ca488f4fb6
13 changed files with 50 additions and 29 deletions

View File

@@ -3,8 +3,8 @@
.workspaces {
label {
font-size: 0rem;
min-width: 0.9rem;
min-height: 0.9rem;
min-width: 1rem;
min-height: 1rem;
border-radius: 1.9rem * .6;
margin: 0rem 0.5rem * .5;
transition: 300ms * .5;
@@ -12,14 +12,14 @@
&.occupied {
background-color: $yellow;
min-width: 0.9rem;
min-height: 0.9rem;
min-width: 1rem;
min-height: 1rem;
}
&.active {
background-color: $sky;
min-width: 2.2rem;
min-height: 0.9rem;
min-height: 1rem;
}
}
}