From 9cadb386dd747fdaa40c3b9c412a638ee9f6e42e Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Thu, 9 Jan 2020 11:42:47 -0500 Subject: [PATCH] fix the pixels --- src/components/Person.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Person.js b/src/components/Person.js index 71695adf..8ab35af7 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -157,9 +157,10 @@ const PersonDeets = styled.div` @media all and (max-width: 400px) { display: grid; grid-template-columns: 1fr 1fr; - > *:nth-child(2) ~ * { + > *:nth-child(1), + > *:nth-child(2) { /* lol */ - border-top: 1px solid var(--vape); + border-bottom: 1px solid var(--vape); } } `;