diff options
Diffstat (limited to 'vendor/twbs/bootstrap/scss/utilities/_sizing.scss')
-rw-r--r-- | vendor/twbs/bootstrap/scss/utilities/_sizing.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/scss/utilities/_sizing.scss b/vendor/twbs/bootstrap/scss/utilities/_sizing.scss new file mode 100644 index 000000000..e95a4db36 --- /dev/null +++ b/vendor/twbs/bootstrap/scss/utilities/_sizing.scss @@ -0,0 +1,12 @@ +// stylelint-disable declaration-no-important + +// Width and height + +@each $prop, $abbrev in (width: w, height: h) { + @each $size, $length in $sizes { + .#{$abbrev}-#{$size} { #{$prop}: $length !important; } + } +} + +.mw-100 { max-width: 100% !important; } +.mh-100 { max-height: 100% !important; } |