snipe-it/resources/assets/less/bootstrap-less/mixins/size.less
2016-03-25 03:36:37 -07:00

11 lines
127 B
Plaintext
Executable file

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