Files
spectre.console/docs/input/assets/bootstrap/mixins/_size.scss
Patrik Svensson f1912b1d44 Add initial docs
2020-08-27 15:12:03 +02:00

8 lines
148 B
SCSS

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