From 69b6b7a81637abecfd2a7b25a23a57335f5ee2db Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Wed, 8 Jan 2020 13:54:07 -0500 Subject: [PATCH] move back to OLD BORDERS --- src/components/Person.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Person.js b/src/components/Person.js index 767b2b10..d68cb0ee 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -131,23 +131,23 @@ const PersonInner = styled.div` const PersonDeets = styled.div` display: flex; - border-block-start: 1px solid var(--vape); + border-top: 1px solid var(--vape); > * { flex: 1; - border-inline-start: 1px solid var(--vape); + border-left: 1px solid var(--vape); text-align: center; padding: 1rem; display: grid; align-items: center; justify-content: center; grid-template-columns: auto auto; + &:first-child { + border-left: 0; + } } a { color: var(--vape); } - :first-child { - border-inline-start: none; - } .country { font-size: 3rem; } @@ -159,7 +159,7 @@ const PersonDeets = styled.div` grid-template-columns: 1fr 1fr; > *:nth-child(2) ~ * { /* lol */ - border-block-start: 1px solid var(--vape); + border-left: 1px solid var(--vape); } } `;