Use flex-grow instead of flex for the sticky footer to fix an issue where main-content never expands past 100vh on ie11

This commit is contained in:
Kevin MacMartin 2017-08-29 13:57:06 -04:00
parent e6d8259f25
commit eb205235aa

View file

@ -45,6 +45,6 @@ body {
flex-direction: column; flex-direction: column;
#main-content { #main-content {
flex: 1; flex-grow: 1;
} }
} }