1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2026-03-22 18:44:49 +00:00
webvirtcloud/dev/scss/bootstrap/mixins/_size.scss
2020-05-19 19:53:54 +03:00

7 lines
148 B
SCSS

// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
@include deprecate("`size()`", "v4.3.0", "v5");
}