This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
SPJ-Website-Mockup/scss/bootstrap/scss/mixins/_size.scss
2025-03-03 09:09:37 +00:00

8 lines
148 B
SCSS

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