Files
CRM/layouts/v7/lib/animate/source/attention_seekers/pulse.css
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

20 lines
284 B
CSS

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
0% {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}