0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-05-18 15:41:03 +00:00
salesagility_SuiteCRM/themes/SuiteP/css/bootstrap/mixins/size.scss
2017-12-06 13:59:36 +00:00

10 lines
147 B
SCSS

// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}