antd-mobile
Version:
基于 React 的移动设计规范实现
44 lines (35 loc) • 633 B
text/less
@import '../../style/themes/default';
.am-icon {
fill: currentColor;
background-size: cover;
width: @icon-size-md;
height: @icon-size-md;
&-xxs {
width: @icon-size-xxs;
height: @icon-size-xxs;
}
&-xs {
width: @icon-size-xs;
height: @icon-size-xs;
}
&-sm {
width: @icon-size-sm;
height: @icon-size-sm;
}
&-md {
width: @icon-size-md;
height: @icon-size-md;
}
&-lg {
width: @icon-size-lg;
height: @icon-size-lg;
}
&-loading {
animation: cirle-anim 1s linear infinite;
}
@keyframes cirle-anim {
100% {
transform: rotate(360deg);
}
}
}