From c192009673db4d0288edea92cff1990d8c418b35 Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Mon, 19 Feb 2018 14:05:05 -0500 Subject: [PATCH] Layout: Extend content to full view height --- src/styles/corrupt_layout.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/styles/corrupt_layout.css b/src/styles/corrupt_layout.css index 07da186..ced6354 100644 --- a/src/styles/corrupt_layout.css +++ b/src/styles/corrupt_layout.css @@ -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 {