fix: <hr> is almost invisible in darkly theme

This commit is contained in:
ayan4m1 2023-06-15 08:23:55 -04:00
parent de4b1a0518
commit 1ed148d3d2

View file

@ -68,7 +68,7 @@ export class PostListings extends Component<PostListingsProps, any> {
return ( return (
<div> <div>
{this.posts.length > 0 ? ( {this.posts.length > 0 ? (
this.posts.map(post_view => ( this.posts.map((post_view: PostView, idx: number) => (
<> <>
<PostListing <PostListing
post_view={post_view} post_view={post_view}
@ -96,7 +96,9 @@ export class PostListings extends Component<PostListingsProps, any> {
onAddAdmin={this.props.onAddAdmin} onAddAdmin={this.props.onAddAdmin}
onTransferCommunity={this.props.onTransferCommunity} onTransferCommunity={this.props.onTransferCommunity}
/> />
<hr className="my-3" /> {idx + 1 !== this.posts.length && (
<hr className="my-3 border border-primary" />
)}
</> </>
)) ))
) : ( ) : (