Files
nodeMap/components/uiWidgets/alarm-indicator-fastpulse.css
2025-09-17 12:59:37 +02:00

16 lines
200 B
CSS

@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;
}