igfs/resources/custom/scss/bootstrap/mixins/_size.scss

8 lines
148 B
SCSS
Raw Normal View History

2024-09-12 13:24:24 +03:00
// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
@include deprecate("`size()`", "v4.3.0", "v5");
}