mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 20:14:15 +00:00
8 lines
148 B
SCSS
8 lines
148 B
SCSS
|
// Sizing shortcuts
|
||
|
|
||
|
@mixin size($width, $height: $width) {
|
||
|
width: $width;
|
||
|
height: $height;
|
||
|
@include deprecate("`size()`", "v4.3.0", "v5");
|
||
|
}
|