Files
park/public/assets/less/bootstrap-less/mixins/size.less
MeSHard b22d09bd39 init
2025-12-01 11:19:23 +08:00

11 lines
127 B
Plaintext

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