0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

combine size & square mixins into one

This commit is contained in:
Rakhat Jabagin 2015-08-26 16:17:00 +06:00
parent 7ff9b1979c
commit 865911c35d

View File

@ -1,10 +1,6 @@
// Sizing shortcuts
@mixin size($width, $height) {
@mixin size($width, $height: $width) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}