blob: abbe2463ce8d7c315f8a2368f9301603315a35db [file] [log] [blame]
// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}