cycat-project-website/_sass/bootstrap/mixins/_size.scss

8 lines
148 B
SCSS
Raw Normal View History

2018-12-09 08:21:01 +01:00
// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
2020-08-23 12:01:06 +02:00
@include deprecate("`size()`", "v4.3.0", "v5");
2018-12-09 08:21:01 +01:00
}