kumify/frontend/static/frontend/bootstrap/scss/mixins/_size.scss

8 lines
148 B
SCSS
Raw Normal View History

2020-12-27 17:49:54 +00:00
// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
@include deprecate("`size()`", "v4.3.0", "v5");
}