Commit b5c93eaf authored by Mark Otto's avatar Mark Otto

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

Combine size & square mixins into one
parents 32215632 865911c3
// Sizing shortcuts
@mixin size($width, $height) {
@mixin size($width, $height: $width) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment