UNPKG

298 BSCSSView Raw
1// stylelint-disable declaration-no-important
2
3// Width and height
4
5@each $prop, $abbrev in (width: w, height: h) {
6 @each $size, $length in $sizes {
7 .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
8 }
9}
10
11.mw-100 { max-width: 100% !important; }
12.mh-100 { max-height: 100% !important; }