tethys/resources/assets/less/bootstrap/mixins/size.less
2020-06-10 21:04:18 +02:00

10 lines
127 B
Text
Executable file
Vendored

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