From ca9e52b135ec09f9f7cfe4f2b8f09f692ebaacd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 7 Nov 2018 19:51:00 +0100 Subject: [PATCH] Add fix for IE11 flexbox height bug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- core/css/ie.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/ie.scss b/core/css/ie.scss index a4d2c8336e..f1a617f097 100644 --- a/core/css/ie.scss +++ b/core/css/ie.scss @@ -4,6 +4,11 @@ } #app-content { width: $navigation-width !important; + /** + * set min height so the container will grow in IE11 + * https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11 + */ + min-height: calc(100vh - 50px); } #app-sidebar.disappear { right: -$sidebar-max-width !important;