Add fix for IE11 flexbox height bug

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2018-11-07 19:51:00 +01:00
parent f77e24e725
commit ca9e52b135
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
1 changed files with 5 additions and 0 deletions

View File

@ -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;