gentelella/vendors/bootstrap/scss/mixins/_size.scss

8 lines
148 B
SCSS
Raw Normal View History

2019-10-23 10:36:28 +00:00
// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
@include deprecate("`size()`", "v4.3.0", "v5");
}