Files

11 lines
147 B
SCSS
Raw Permalink Normal View History

2026-02-14 02:36:56 -05:00
// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}