server/core/css/ie.scss
John Molakvoæ (skjnldsv) 563df2a9ea
Fix IE rule for min width
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-11-08 18:19:52 +01:00

15 lines
No EOL
353 B
SCSS

#app-sidebar {
position: fixed !important;
}
#app-content {
min-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;
}