hrms-manual/node_modules/@quasar/extras/animate/pulse.css

21 lines
326 B
CSS
Raw Normal View History

2023-09-06 14:51:44 +07:00
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
animation-timing-function: ease-in-out;
}