summaryrefslogtreecommitdiffstats
path: root/core/css/ie.scss
blob: f1a617f0975f0638703575aeab75029452991d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#app-sidebar {
	position: fixed !important;
}
#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;
}