i4way-dash/.svn/pristine/df/df263f94613037533c7ddd9b537...

11 lines
147 B
Plaintext

// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}