summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post-listings.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-08-29 16:46:09 -0700
committerDessalines <tyhou13@gmx.com>2019-08-29 16:46:09 -0700
commit4f427d0e613db94b2e5064fd68467531d1b77bbc (patch)
treed0e18dfd66d247a4ea4ba154fd352aaa21fe32c4 /ui/src/components/post-listings.tsx
parent8d1db3c39542e6c76a82f9d6119e89fdcfd6e845 (diff)
Remove dividing lines again.
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>
</>
) :
<>