iview/styles/mixins/size.less

9 lines
112 B
Text
Raw Normal View History

2016-09-09 14:29:19 +08:00
.size(@width; @height) {
width: @width;
height: @height;
}
.square(@size) {
.size(@size; @size);
}