From 967b0dd9640a6eadee3f1f7b9776d95e00d515e1 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sat, 18 Sep 2021 17:59:20 -0400 Subject: [PATCH] Fix community display name overflow. Fixes #390 (#425) --- src/assets/css/main.css | 4 ++++ src/shared/components/community/community-link.tsx | 2 +- src/shared/components/community/community.tsx | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/assets/css/main.css b/src/assets/css/main.css index ef6b743..2e6c7cb 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -207,6 +207,10 @@ hr { text-overflow: ellipsis; } +.overflow-wrap-anywhere { + overflow-wrap: anywhere; +} + #app { display: flex; flex-direction: column; diff --git a/src/shared/components/community/community-link.tsx b/src/shared/components/community/community-link.tsx index 96db808..fee38eb 100644 --- a/src/shared/components/community/community-link.tsx +++ b/src/shared/components/community/community-link.tsx @@ -61,7 +61,7 @@ export class CommunityLink extends Component { {!this.props.hideAvatar && community.icon && showAvatars() && ( )} - {displayName} + {displayName} ); } diff --git a/src/shared/components/community/community.tsx b/src/shared/components/community/community.tsx index 3ce5f84..e342085 100644 --- a/src/shared/components/community/community.tsx +++ b/src/shared/components/community/community.tsx @@ -336,7 +336,7 @@ export class Community extends Component { return (
-
{community.title}
+
{community.title}