Renamed font-awesome directory to fontawesome

This commit is contained in:
2018-07-15 11:44:42 +02:00
parent 71dd4fe6e6
commit b4db0890f9
1340 changed files with 1 additions and 1 deletions

19
css/fontawesome/less/_animated.less vendored Normal file
View File

@@ -0,0 +1,19 @@
// 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);
}
}