summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post-listings.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/post-listings.tsx')
-rw-r--r--ui/src/components/post-listings.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/src/components/post-listings.tsx b/ui/src/components/post-listings.tsx
index 5dd62739..2bbbea81 100644
--- a/ui/src/components/post-listings.tsx
+++ b/ui/src/components/post-listings.tsx
@@ -21,7 +21,8 @@ export class PostListings extends Component<PostListingsProps, any> {
{this.props.posts.length > 0 ? this.props.posts.map(post =>
<>
<PostListing post={post} showCommunity={this.props.showCommunity} />
- <hr class="my-2" />
+ <hr class="d-md-none my-2" />
+ <div class="d-none d-md-block my-3"></div>
</>
) :
<>