From 80243af1df0b53430e2430a8b15deb0e2c7d2323 Mon Sep 17 00:00:00 2001 From: Zack Stickles Date: Tue, 30 Jun 2020 14:51:52 -0700 Subject: [PATCH] fix: reduce props to single column on mobile --- src/components/PropList.module.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/PropList.module.scss b/src/components/PropList.module.scss index 0948a0cb3..75fda9d38 100644 --- a/src/components/PropList.module.scss +++ b/src/components/PropList.module.scss @@ -8,6 +8,10 @@ padding-bottom: 2rem; border-bottom: solid var(--color-neutrals-200) 1px; } + + @media (max-width: 1080px) { + grid-template-columns: 1fr; + } } .propName {