7 lines
98 B
SCSS
Executable file
7 lines
98 B
SCSS
Executable file
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height: $width) {
|
|
width: $width;
|
|
height: $height;
|
|
}
|