mivita/public/assets/plugins/bootstrap/less/mixins/size.less
2018-11-17 02:01:22 +01:00

10 lines
127 B
Text

// Sizing shortcuts
.size(@width; @height) {
width: @width;
height: @height;
}
.square(@size) {
.size(@size; @size);
}