todo/public/vendor/bootstrap/less/mixins/size.less
Supan Adit Pratama 35d8715ab4 first commit
2020-06-23 11:40:37 +07:00

11 lines
127 B
Plaintext
Executable File

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