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

View File

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