We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0300061 + 3c179e9 commit 69d2ddbCopy full SHA for 69d2ddb
1 file changed
src/definitions/elements/icon.less
@@ -71,15 +71,19 @@ i.icon:before {
71
i.icon.loading {
72
height: 1em;
73
line-height: 1;
74
+}
75
+
76
+i.icon.loading:before {
77
animation: icon-loading @loadingDuration linear infinite;
78
}
79
80
@keyframes icon-loading {
- from {
- transform: rotate(0deg);
- }
- to {
81
- transform: rotate(360deg);
82
+ from {
+ transform: translateY(-50%) rotate(0deg);
83
+ }
84
+ to {
85
+ transform: translateY(-50%) rotate(360deg);
86
87
88
89
/*******************************
0 commit comments