Skip to content

Commit

Permalink
Merge pull request #12374 from nextcloud/backport/12342/stable14
Browse files Browse the repository at this point in the history
[14] Add fix for IE11 flexbox height bug
  • Loading branch information
rullzer authored Nov 9, 2018
2 parents 7fba370 + 50ee75d commit 2b20461
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/css/ie.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2b20461

Please sign in to comment.