Use spae instead of margin

This commit is contained in:
SleeplessOne1917 2023-06-25 13:28:00 -04:00
parent d8963d9bfe
commit 6a69d6b063

View file

@ -741,9 +741,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<Icon icon="message-square" classes="me-1" inline /> <Icon icon="message-square" classes="me-1" inline />
{post_view.counts.comments} {post_view.counts.comments}
{this.unreadCount && ( {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> </Link>
); );