From: Shohei Yoshida Date: Sat, 29 Feb 2020 07:59:36 +0000 (+0900) Subject: Fix centered modal scrolling issue (#30244) X-Git-Tag: v5.0.0-alpha1~414 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40ac139bbe05874fb9c96ec6c453a847596dc555;p=thirdparty%2Fbootstrap.git Fix centered modal scrolling issue (#30244) Use the `min-content` property. --- diff --git a/scss/_modal.scss b/scss/_modal.scss index 421e3e6400..e43c70fbb4 100644 --- a/scss/_modal.scss +++ b/scss/_modal.scss @@ -83,6 +83,7 @@ &::before { display: block; // IE10 height: subtract(100vh, $modal-dialog-margin * 2); + height: min-content; // Reset height to 0 except on IE content: ""; } @@ -216,6 +217,7 @@ &::before { height: subtract(100vh, $modal-dialog-margin-y-sm-up * 2); + height: min-content; } }