Skip to content

Commit e6179b6

Browse files
crisbetojelbourn
authored andcommittedMay 16, 2018
fix: footer not sticking to bottom of the page on IE (#451)
Fixes the body container collapsing on IE, causing the footer to show up right under the navigation.
1 parent ec4d8b6 commit e6179b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎material.angular.io/src/app/pages/component-sidenav/component-sidenav.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ app-component-sidenav {
106106
}
107107

108108
.docs-component-sidenav-inner-content {
109-
display: flex;
109+
display: flex;
110110
flex-direction: column;
111111
flex: 1;
112112
}
113113

114114
.docs-component-sidenav-body-content {
115115
display: flex;
116-
flex: 1;
116+
flex: 1 1 auto;
117117
}
118118

119119
@media (max-width: $small-breakpoint-width) {

0 commit comments

Comments
 (0)
Please sign in to comment.