grid-component-editor
Version:
延长loading超时时间;转义伪类中文,防止乱码
26 lines (22 loc) • 620 B
text/less
// 基础类 作为其他类的父类 或者直接使用
.flex-between() {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
}
.absolute-center() {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.transition(@property, @interval: @interval[primary], @tranFunc: ease-out) {
will-change: @property;
transition: @property @interval @tranFunc;
}
.animation(@aniName,@property, @interval: @interval[primary], @tranFunc: ease-out) {
will-change: @property;
animation: @aniName @interval @tranFunc;
}