mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-16 02:00:28 +08:00
4a30b78414
Closes #2738
20 lines
299 B
SCSS
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);
|
|
}
|
|
}
|