diff options
| author | Mark Otto <[email protected]> | 2018-09-18 19:54:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2018-10-06 17:55:55 -0700 |
| commit | 29bd5e32186b2d56b7b35a09597bfed6636d66c9 (patch) | |
| tree | 02dfd7e566b0c5e1fc33b691d35885822c4ac73b /scss/utilities | |
| parent | 23015571b9644c38b6991390b787b0a252c7f864 (diff) | |
| download | bootstrap-29bd5e32186b2d56b7b35a09597bfed6636d66c9.tar.xz bootstrap-29bd5e32186b2d56b7b35a09597bfed6636d66c9.zip | |
Add overflow-auto and overflow-hidden utilities
Diffstat (limited to 'scss/utilities')
| -rw-r--r-- | scss/utilities/_overflow.scss | 5 | ||||
| -rw-r--r-- | scss/utilities/_position.scss | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/scss/utilities/_overflow.scss b/scss/utilities/_overflow.scss new file mode 100644 index 000000000..8326c3064 --- /dev/null +++ b/scss/utilities/_overflow.scss @@ -0,0 +1,5 @@ +// stylelint-disable declaration-no-important + +@each $value in $overflows { + .overflow-#{$value} { overflow: $value !important; } +} diff --git a/scss/utilities/_position.scss b/scss/utilities/_position.scss index 9ecdeeb9b..cdf6c115f 100644 --- a/scss/utilities/_position.scss +++ b/scss/utilities/_position.scss @@ -1,11 +1,6 @@ // stylelint-disable declaration-no-important // Common values - -// Sass list not in variables since it's not intended for customization. -// stylelint-disable-next-line scss/dollar-variable-default -$positions: static, relative, absolute, fixed, sticky; - @each $position in $positions { .position-#{$position} { position: $position !important; } } |
