Files
WebGatewayUpload/templates/scss/bootstrap/mixins/_size.scss
2022-09-28 01:54:13 +04:00

8 lines
148 B
SCSS

// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
@include deprecate("`size()`", "v4.3.0", "v5");
}