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 8c4a28aa80 fix spinner
2024-10-18 14:20:22 +03:00

22 lines
415 B
Plaintext

.animation-spin-fast {
animation: fa-spin 0.5s infinite linear;
}
@keyframes animation-spin-fast {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.fa-spin {
animation-name: fa-spin;
animation-delay: 0s;
animation-direction: normal;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}