Update /dist from gulp build

This commit is contained in:
billz
2019-10-11 00:34:31 +01:00
parent cf69881767
commit ee2bddcd80
1648 changed files with 122180 additions and 9818 deletions

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);
}
}