From: Jay Sitter <jay@jaysitter.com> Date: Sun, 25 Jun 2023 23:46:27 +0000 (-0400) Subject: fix: Fix a too-small thumbnail column X-Git-Url: http://these/git/%22%7B%7D/static/%7B%60https:/%24%7Bi.domain%7D%60%7D?a=commitdiff_plain;h=a90c34eb7f79eb136e912297524b0b64766b08e6;p=lemmy-ui.git fix: Fix a too-small thumbnail column --- diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 70ec2c8..a79c8c2 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -1418,10 +1418,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> { /> </div> )} - <div className="col-sm-1 col-md-2 pe-0 post-media"> + <div className="col-sm-2 pe-0 post-media"> <div className="">{this.thumbnail()}</div> </div> - <div className="col-12 col-sm-8 col-md-9 "> + <div className="col-12 col-sm-9"> {this.postTitleLine()} {this.createdLine()} {this.showBodyPreview()}