Files
links/public/assets/less/bootstrap-less/mixins/size.less
T

11 lines
127 B
Plaintext
Raw Normal View History

2026-05-28 00:32:43 +08:00
// Sizing shortcuts
.size(@width; @height) {
width: @width;
height: @height;
}
.square(@size) {
.size(@size; @size);
}