1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-23 03:41:03 +00:00
Files
privacyguides.org/_sass/bootstrap/mixins/_size.scss

8 lines
148 B
SCSS
Raw Normal View History

2020-04-28 16:09:22 -05:00
// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
@include deprecate("`size()`", "v4.3.0", "v5");
}