style: Alarm Ui Widget

This commit is contained in:
ISA
2025-09-17 12:59:37 +02:00
parent dd9980409c
commit 1d3d04d49c
7 changed files with 108 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
@keyframes fast-pulse {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.6;
transform: scale(1.15);
}
}
.fast-pulse {
animation: fast-pulse 0.5s infinite;
}