mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
348b7de7f7
Move all deprecated vendor prefix mixins to less/mixins/vendor-prefixes.less Create mixins directory and move partials to that directory. FIXES #12994
12 lines
128 B
Plaintext
12 lines
128 B
Plaintext
// Sizing shortcuts
|
|
|
|
.size(@width; @height) {
|
|
width: @width;
|
|
height: @height;
|
|
}
|
|
|
|
.square(@size) {
|
|
.size(@size; @size);
|
|
}
|
|
|