mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2024-10-01 11:49:49 -04: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);
|
|
}
|