From: Shohei Yoshida Date: Tue, 4 Jun 2019 07:25:19 +0000 (+0900) Subject: Workaround for the image size bug in IE (#28855) X-Git-Tag: v5.0.0-alpha1~1068 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6e0552efefff1d43cdf2a9f4c00662d9c055592;p=thirdparty%2Fbootstrap.git Workaround for the image size bug in IE (#28855) --- diff --git a/scss/_card.scss b/scss/_card.scss index aa80739a7a..0369bb3876 100644 --- a/scss/_card.scss +++ b/scss/_card.scss @@ -35,6 +35,9 @@ // Enable `flex-grow: 1` for decks and groups so that card blocks take up // as much space as possible, ensuring footers are aligned to the bottom. flex: 1 1 auto; + // Workaround for the image size bug in IE + // See: https://github.com/twbs/bootstrap/pull/28855 + min-height: 1px; padding: $card-spacer-x; color: $card-color; }