Skip to content

Commit 6f5181f

Browse files
authored
Merge pull request #12342 from nextcloud/bugfix/noid/ie11-appcontent
Add fix for IE11 flexbox height bug
2 parents a8fb7e1 + ca9e52b commit 6f5181f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

core/css/ie.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
}
55
#app-content {
66
width: $navigation-width !important;
7+
/**
8+
* set min height so the container will grow in IE11
9+
* https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11
10+
*/
11+
min-height: calc(100vh - 50px);
712
}
813
#app-sidebar.disappear {
914
right: -$sidebar-max-width !important;

0 commit comments

Comments
 (0)