From de6e2dfd88a5cf986d466c056a6694299253584a Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Mon, 15 Jun 2020 21:34:11 -0700 Subject: [PATCH] fix: Ensure right-column on prop list does not overflow --- src/components/PropList.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PropList.module.scss b/src/components/PropList.module.scss index f99884930..3307ba561 100644 --- a/src/components/PropList.module.scss +++ b/src/components/PropList.module.scss @@ -1,6 +1,6 @@ .container { display: grid; - grid-template-columns: 30% 1fr; + grid-template-columns: 30% minmax(0, 1fr); grid-gap: 1rem; &:not(:last-child) {