]> Untitled Git - lemmy-ui.git/commitdiff
Use spae instead of margin
authorSleeplessOne1917 <abias1122@gmail.com>
Sun, 25 Jun 2023 17:28:00 +0000 (13:28 -0400)
committerSleeplessOne1917 <abias1122@gmail.com>
Sun, 25 Jun 2023 17:28:00 +0000 (13:28 -0400)
src/shared/components/post/post-listing.tsx

index 20be5b234032dd09c27bfce7b8768a57bc67d94d..e43590e58c54197973f8768fe90af77cb1887632 100644 (file)
@@ -741,9 +741,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
         <Icon icon="message-square" classes="me-1" inline />
         {post_view.counts.comments}
         {this.unreadCount && (
-          <span className="text-muted fst-italic ms-1">
-            ({this.unreadCount} {I18NextService.i18n.t("new")})
-          </span>
+          <>
+            {" "}
+            <span className="text-muted fst-italic">
+              ({this.unreadCount} {I18NextService.i18n.t("new")})
+            </span>
+          </>
         )}
       </Link>
     );