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

combine size & square mixins into one

parent 7ff9b197
// 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