This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/frontend/less/espo/elements/animation.less
T
Yuri Kuznetsov 8c60396197 spin animation
2024-01-13 11:32:23 +02:00

13 lines
206 B
Plaintext

.animation-spin-fast {
animation: fa-spin 0.5s infinite linear;
}
@keyframes animation-spin-fast {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}