@meleon/uni-ui
Version:
A uniapp components library written in vue3 and typescript
23 lines (21 loc) • 371 B
text/less
.ml-icon {
width: fit-content;
height: fit-content;
&-inner {
display: flex;
align-items: center;
justify-content: center;
// transform: translateY(1px);
}
&-rotating {
animation: loading 1s infinite linear;
}
}
@keyframes loading {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}