Set container flex-basis to auto

Without flex-basis: auto, IE overlays the footer on top of long pages of text,
as its position seems to be computed relative to the initial viewport.
This commit is contained in:
Stephen Crane 2019-08-15 16:11:26 -07:00
parent 9f40a4c205
commit 48d67c783e
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ ol ol {
}
.container {
flex: 1;
flex: 1 auto;
display: flex;
flex-direction: column;
justify-content: center;