From fa4ceb9f6bc82027ea708535455e3a7e8cf3428e Mon Sep 17 00:00:00 2001 From: Prashant Shrestha Date: Thu, 9 Jan 2020 19:43:31 -0500 Subject: [PATCH] Fixed the overflow problem for long profile links. --- src/components/Person.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Person.js b/src/components/Person.js index 8ab35af7..8c36b125 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -122,6 +122,9 @@ const PersonInner = styled.div` color: var(--vape); letter-spacing: 1px; font-size: 1.2rem; + text-overflow: ellipsis; + max-width: 100%; + overflow: hidden; :hover { color: var(--pink); }