17 lines
210 B
SCSS
17 lines
210 B
SCSS
.cl-loading {
|
|
animation: loading-rotate 1.2s linear infinite;
|
|
|
|
@keyframes loading-rotate {
|
|
0% {
|
|
transform: rotate(0);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
cl-loading {
|
|
line-height: 0;
|
|
}
|