_animated.scss 300 B

123456789101112131415161718192021
  1. // Animated Icons
  2. // --------------------------
  3. .#{$fa-css-prefix}-spin {
  4. animation: fa-spin 2s infinite linear;
  5. }
  6. .#{$fa-css-prefix}-pulse {
  7. animation: fa-spin 1s infinite steps(8);
  8. }
  9. @keyframes fa-spin {
  10. 0% {
  11. transform: rotate(0deg);
  12. }
  13. 100% {
  14. transform: rotate(360deg);
  15. }
  16. }