Files
Roman Pyrih 968c7e1248 first commit
2026-04-28 09:27:26 +02:00

13 lines
153 B
CSS

@keyframes pulse {
from,
to {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
}
.pulse {
animation-name: pulse;
}