flectra/doc/_extensions/flectra_ext/static/bootstrap-3.3.6/less/mixins/size.less
2018-02-11 23:55:56 -08:00

11 lines
127 B
Plaintext
Executable File

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