Commit 865911c3 authored by Rakhat Jabagin's avatar Rakhat Jabagin
Browse files

combine size & square mixins into one

parent 7ff9b197
Showing with 1 addition and 5 deletions
+1 -5
// 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);
}
Supports Markdown
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