mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-09 01:54:02 +00:00
Merge pull request #1771 from jsit/fix/fix-long-words-in-titles-overflow
fix: Break text on post titles so long words don't overflow
This commit is contained in:
commit
8730f157da
|
@ -465,8 +465,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
|
||||
return (
|
||||
<>
|
||||
<div className="post-title overflow-hidden">
|
||||
<h1 className="h5 d-inline">
|
||||
<div className="post-title">
|
||||
<h1 className="h5 d-inline text-break">
|
||||
{url && this.props.showBody ? (
|
||||
<a
|
||||
className={
|
||||
|
|
Loading…
Reference in a new issue