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

[email protected]._animated.less Maven / Gradle / Ivy

There is a newer version: 2.14
Show newest version
// 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);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy