diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-11-07 22:38:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 22:38:10 +0100 |
commit | 6f5181f811b14fd9c3fe17cc7c6bacd1c06bafa0 (patch) | |
tree | 83c48de10b1ffd0692b46c8311dcb938db9207c5 | |
parent | a8fb7e148dedcbae2f454251b98ae865f92106f6 (diff) | |
parent | ca9e52b135ec09f9f7cfe4f2b8f09f692ebaacd1 (diff) | |
download | nextcloud-server-6f5181f811b14fd9c3fe17cc7c6bacd1c06bafa0.tar.gz nextcloud-server-6f5181f811b14fd9c3fe17cc7c6bacd1c06bafa0.zip |
Merge pull request #12342 from nextcloud/bugfix/noid/ie11-appcontent
Add fix for IE11 flexbox height bug
-rw-r--r-- | core/css/ie.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/css/ie.scss b/core/css/ie.scss index a4d2c8336ec..f1a617f0975 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; |