change battery critical animation

This commit is contained in:
2025-08-23 14:24:14 +05:30
parent 57881dbb96
commit 2b10a21aa4
+1 -3
View File
@@ -143,15 +143,13 @@ button {
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
/* Using steps() instead of linear as a timing function to limit cpu usage */
#battery.critical:not(.charging) {
background-color: @red;
color: #ffffff;
color: @red;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: steps(12);