mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 18:17:29 -05:00
17 lines
371 B
SCSS
17 lines
371 B
SCSS
// Spinning Icons
|
|
// --------------------------
|
|
|
|
.#{$fa-css-prefix}-spin {
|
|
animation: spin 2s infinite linear;
|
|
-webkit-animation: spin 2s infinite linear;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(359deg); }
|
|
}
|
|
|
|
@-webkit-keyframes spin {
|
|
0% { -webkit-transform: rotate(0deg); }
|
|
100% { -webkit-transform: rotate(359deg); }
|
|
}
|