snipe-it/resources/assets/less/bootstrap-less/mixins/size.less
snipe f532e9b462
Fixing assets :(
Not sure what happened in tbis merge exactly
2020-04-21 03:07:11 -07:00

11 lines
127 B
Plaintext
Executable file

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