1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

chore: maybe blinking battery for waybar

This commit is contained in:
oddlama 2024-07-14 14:13:09 +02:00
parent d6cf94d302
commit 7271352383
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -101,7 +101,19 @@ button:hover {
}
@keyframes blink {
to {
0% {
background-color: #e05f65;
}
49% {
background-color: #e05f65;
}
50% {
background-color: #000000;
}
100% {
background-color: #000000;
}
}
@ -116,9 +128,8 @@ button:hover {
background-color: #e05f65;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: step-start;
animation-timing-function: steps(12);
animation-iteration-count: infinite;
animation-direction: alternate;
}
#power-profiles-daemon {