mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
11 lines
147 B
SCSS
11 lines
147 B
SCSS
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height) {
|
|
width: $width;
|
|
height: $height;
|
|
}
|
|
|
|
@mixin square($size) {
|
|
@include size($size, $size);
|
|
}
|