Layout: Extend content to full view height

This commit is contained in:
Bill Niblock 2018-02-19 14:05:05 -05:00
parent 432cebd50d
commit c192009673

View file

@ -72,7 +72,7 @@ main #desc {
.cor_page {
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-auto-rows: minmax(50px, auto);
grid-template-rows: 50px max-content;
grid-template-areas:
"head head head head head head head"
". body body body body body ."
@ -95,7 +95,7 @@ main #desc {
.cor_page {
display: grid;
grid-template-columns: repeat(9, 1fr);
grid-auto-rows: minmax(50px, auto);
grid-template-rows: 50px max-content;
grid-template-areas:
"head head head head head head head foot foot"
". body body body body body . foot foot";
@ -110,6 +110,7 @@ main #desc {
footer {
border-top: 0px;
box-shadow: unset;
min-height: 100vh;
}
nav {