This repository has been archived on 2024-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
Nikiroy78.github.io/assets/font-awesome/scss/_animated.scss
2023-10-15 16:42:02 +03:00

21 lines
300 B
SCSS

// Animated Icons
// --------------------------
.#{$fa-css-prefix}-spin {
animation: fa-spin 2s infinite linear;
}
.#{$fa-css-prefix}-pulse {
animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}