From 2dbe00ddf0faff41b0df1494e4377e5f5aa4bd16 Mon Sep 17 00:00:00 2001 From: Scott Nath Date: Wed, 16 Aug 2023 09:25:48 -0400 Subject: [PATCH] :bug: min spacing for social cards --- workspaces/website/src/styles/global.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/workspaces/website/src/styles/global.css b/workspaces/website/src/styles/global.css index cebc32f..2bd143b 100644 --- a/workspaces/website/src/styles/global.css +++ b/workspaces/website/src/styles/global.css @@ -188,8 +188,10 @@ ul.social-cards { gap: .5em; list-style-type: none; } -ul.social-cards:has(li:nth-of-type(2):last-child) li { - width: calc(100% / 2 - .5em); +@media (min-width: 600px) { + ul.social-cards:has(li:nth-of-type(2):last-child) li { + width: calc(100% / 2 - .5em); + } } /* dl.social-cards:has(dd:nth-of-type(3):last-child) dd { width: calc(100% / 3 - .5em);