From 8a163fedde4c28dffb747dbb9ad6119b5eb45ef7 Mon Sep 17 00:00:00 2001 From: Jay Sitter <jay@jaysitter.com> Date: Sun, 2 Jul 2023 20:20:08 -0400 Subject: [PATCH] fix: Break text on post titles so long words don't overflow --- src/shared/components/post/post-listing.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 654f92d..9bb416a 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -477,8 +477,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> { return ( <> - <div className="post-title overflow-hidden"> - <h5 className="d-inline"> + <div className="post-title"> + <h5 className="d-inline text-break"> {url && this.props.showBody ? ( <a className={ -- 2.44.1