fix: re add hover animation to workspace module on waybar

This commit is contained in:
matt1432 2023-06-08 03:13:30 -04:00
parent 0241c61134
commit 10efa92b8e
3 changed files with 10 additions and 4 deletions
waybar

View file

@ -42,7 +42,8 @@
#workspaces button {
padding: 0 5px;
color: #7984A4;
color: #CDD6F4;
/*color: #7984A4;*/
background-color: transparent;
box-shadow: inset 0 -3px transparent;
border: none;
@ -50,6 +51,11 @@
border-radius: 80px;
}
#workspaces button:hover {
background-color: #7F849C;
transition: background-color 0.5s ease-in-out;
}
#workspaces button.focused {
color: #bf616a;
}