Font-Awesome/scss/_animated.scss
Rouven Weßling 4a30b78414 Use autoprefixer
Closes #2738
2015-07-04 13:59:40 +02:00

20 lines
299 B
SCSS

// Spinning 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(359deg);
}
}