8 lines
148 B
SCSS
Executable File
8 lines
148 B
SCSS
Executable File
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height: $width) {
|
|
width: $width;
|
|
height: $height;
|
|
@include deprecate("`size()`", "v4.3.0", "v5");
|
|
}
|