Files
ponzi/resources/assets/less/bootstrap/mixins/size.less
2015-01-09 11:51:17 -06:00

11 lines
127 B
Plaintext
Executable File
Vendored

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