2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +03:00

Merge pull request #17333 from neilhem/combine-size-mixins

Combine size & square mixins into one
This commit is contained in:
Mark Otto
2015-09-01 20:25:25 -07:00
+1 -5
View File
@@ -1,10 +1,6 @@
// Sizing shortcuts // Sizing shortcuts
@mixin size($width, $height) { @mixin size($width, $height: $width) {
width: $width; width: $width;
height: $height; height: $height;
} }
@mixin square($size) {
@include size($size, $size);
}