From dd54128f3c8449b6f9841d6efb5ec8eeac14a8ff Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 1 Nov 2021 21:28:45 -0500 Subject: [PATCH 1/2] ProfileInfoPanel: fix text overflow --- app/styles/components/profile-info-panel.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/styles/components/profile-info-panel.scss b/app/styles/components/profile-info-panel.scss index 2bee4e368..d736ed2cd 100644 --- a/app/styles/components/profile-info-panel.scss +++ b/app/styles/components/profile-info-panel.scss @@ -87,6 +87,8 @@ margin: 15px 0; font-size: 15px; line-height: 1.25; + overflow: hidden; + text-overflow: ellipsis; a { color: var(--highlight-text-color); From 4947b411fe6a44bcd2fceab835f0603e8586ddd7 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 1 Nov 2021 21:33:18 -0500 Subject: [PATCH 2/2] ProfileInfoPanel: fix date padding when there's no bio --- app/styles/components/profile-info-panel.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/styles/components/profile-info-panel.scss b/app/styles/components/profile-info-panel.scss index d736ed2cd..699e40924 100644 --- a/app/styles/components/profile-info-panel.scss +++ b/app/styles/components/profile-info-panel.scss @@ -28,6 +28,7 @@ color: var(--primary-text-color--faint); align-items: center; line-height: normal; + margin-top: 15px; .svg-icon { width: 22px; @@ -84,7 +85,7 @@ display: block; flex: 1 1; color: var(--primary-text-color); - margin: 15px 0; + margin-top: 15px; font-size: 15px; line-height: 1.25; overflow: hidden;