All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.assets.fontawesome._animated.scss Maven / Gradle / Ivy

The newest version!
// Animated icons
// --------------------------
@use './variables' as *;

.#{$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);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy