diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 9b2d604a..ae43bff9 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -401,10 +401,11 @@ export class PostListing extends Component { } } - createdLine() { + createdLine({ extraClasses = "" }: { extraClasses?: string }) { const post_view = this.postView; + return ( -
+
@@ -1373,7 +1374,9 @@ export class PostListing extends Component {
-
{this.createdLine()}
+ {this.createdLine({ + extraClasses: "mb-1", + })} {/* If it has a thumbnail, do a right aligned thumbnail */} {this.mobileThumbnail()} @@ -1407,7 +1410,7 @@ export class PostListing extends Component {
{this.postTitleLine()} - {this.createdLine()} + {this.createdLine({})} {this.commentsLine()} {this.duplicatesLine()} {this.removeAndBanDialogs()}