igfs/resources/simple/scss/bootstrap/mixins/_size.scss
2024-09-03 16:29:44 +03:00

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");
}