Files
WebStackPage.github.io/assets/less/bs-less/mixins/size.less
2017-12-20 13:23:22 +08:00

11 lines
127 B
Plaintext
Executable File

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