Add fix for IE11 flexbox height bug
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
7fba370a75
commit
50ee75db5a
|
@ -4,6 +4,11 @@
|
||||||
}
|
}
|
||||||
#app-content {
|
#app-content {
|
||||||
width: $navigation-width !important;
|
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 {
|
#app-sidebar.disappear {
|
||||||
right: -$sidebar-max-width !important;
|
right: -$sidebar-max-width !important;
|
||||||
|
|
Loading…
Reference in New Issue