yavsc/Yavsc/wwwroot/lib/bootstrap/less/mixins/size.less

10 lines
127 B
Text
Raw Normal View History

2017-10-20 15:14:16 +02:00
// Sizing shortcuts
.size(@width; @height) {
width: @width;
height: @height;
}
.square(@size) {
.size(@size; @size);
}