环卫车小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
399 B

@import '../mixin/flex.scss';
@mixin btn {
@include flex-h-c;
display: inline-flex;
border-radius: 20rpx;
padding: 0 40rpx;
}
.se {
&-btn {
&-s,
&-m,
&-l {
@include btn;
}
&-s {
height: 60rpx;
font-size: 24rpx;
}
&-m {
height: 80rpx;
font-size: 28rpx;
}
&-l {
height: 100rpx;
font-size: 32rpx;
}
}
}