diff options
| author | Jens Luyten <[email protected]> | 2020-01-25 10:15:06 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-01-25 11:15:06 +0200 |
| commit | 2e6c9f32bdb1255ab085d33b50c247f99f1906a2 (patch) | |
| tree | 13fad82a48953bb5b72328305a4e99bd18e3cce1 | |
| parent | 9a5a60676ca2a783715a573abe3fd3240cbe076f (diff) | |
| download | bootstrap-2e6c9f32bdb1255ab085d33b50c247f99f1906a2.tar.xz bootstrap-2e6c9f32bdb1255ab085d33b50c247f99f1906a2.zip | |
Prevent grid with default cols from breaking when large pre was present (#30049)
| -rw-r--r-- | scss/mixins/_grid-framework.scss | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scss/mixins/_grid-framework.scss b/scss/mixins/_grid-framework.scss index 1ab9b5a5a..53e97b44a 100644 --- a/scss/mixins/_grid-framework.scss +++ b/scss/mixins/_grid-framework.scss @@ -31,6 +31,7 @@ .col#{$infix} { flex-basis: 0; flex-grow: 1; + min-width: 0; // See https://github.com/twbs/bootstrap/issues/25410 max-width: 100%; } |
