From 85286745398adce0e69a00d5a33c265bbcb8ab5f Mon Sep 17 00:00:00 2001 From: william Murphy Date: Sat, 7 Dec 2019 15:05:48 -0600 Subject: [PATCH] fix long group name overflow on home page --- web/src/components/ProfileSummary.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/src/components/ProfileSummary.vue b/web/src/components/ProfileSummary.vue index 5d312e2..b38fdbf 100644 --- a/web/src/components/ProfileSummary.vue +++ b/web/src/components/ProfileSummary.vue @@ -67,4 +67,8 @@ export default { .fas { margin-right: 8px; } + h2 { + overflow: hidden; + text-overflow: ellipsis; + } \ No newline at end of file