From a50ddf28e110fb313da820b810d2dfbdd49ba128 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Mon, 15 Jun 2020 11:10:01 -0700 Subject: [PATCH] fix: Ensure right-column has a min width of 0 --- src/components/Layout.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout.module.scss b/src/components/Layout.module.scss index 6890306c2..73a1666d2 100644 --- a/src/components/Layout.module.scss +++ b/src/components/Layout.module.scss @@ -1,7 +1,7 @@ .layout { min-height: 100vh; display: grid; - grid-template-columns: auto 1fr; + grid-template-columns: auto minmax(0, 1fr); max-width: 1200px; margin: 0 auto; }