allocatr/public/assets/libs/bootstrap/less/mixins/size.less
2025-02-26 16:44:49 +08:00

11 lines
127 B
Plaintext
Executable File

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