style: change cursor to pointer on hover

This commit is contained in:
tux
2025-06-18 04:42:26 +05:30
parent 7936ece744
commit 3e38dab8b9
4 changed files with 8 additions and 4 deletions

View File

@@ -27,12 +27,12 @@ window.Bar {
min-height: 1rem;
min-width: 1rem;
border-radius: calc(list.nth(8px, 1) * 1.5);
transition: min-width 0.15s ease-out;
transition: all 0.15s ease-out;
&:hover {
background-color: $fg-color;
background: rgba($accent, 0.5);
&.occupied {
background-color: $fg-color;
background: rgba($accent, 0.5);
}
}