hugo-whisper-theme/assets/scss/bootstrap/mixins/_size.scss

8 lines
148 B
SCSS
Raw Permalink Normal View History

2019-02-17 06:55:16 +00:00
// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
2019-07-23 01:03:11 +00:00
@include deprecate("`size()`", "v4.3.0", "v5");
2019-02-17 06:55:16 +00:00
}