summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post-listing.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-08-17 19:31:32 -0700
committerDessalines <tyhou13@gmx.com>2019-08-17 19:31:32 -0700
commite97feea7852675ecff9dcc2bcfc59fc0a84f6418 (patch)
tree5048c05a657ca7be8040362b4bd5258e05ff2640 /ui/src/components/post-listing.tsx
parent0fc1551dbcc4deef72a3ac94548ebf756cd32f0e (diff)
Better offsets
Diffstat (limited to 'ui/src/components/post-listing.tsx')
-rw-r--r--ui/src/components/post-listing.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/post-listing.tsx b/ui/src/components/post-listing.tsx
index 401da0e3..dea6f1fb 100644
--- a/ui/src/components/post-listing.tsx
+++ b/ui/src/components/post-listing.tsx
@@ -59,7 +59,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
let post = this.props.post;
return (
<div class="listing">
- <div className={`mr-1 float-left small text-center ${this.props.viewOnly && 'no-click'}`}>
+ <div className={`vote-bar mr-1 float-left small text-center ${this.props.viewOnly && 'no-click'}`}>
<div className={`pointer ${post.my_vote == 1 ? 'text-info' : 'text-muted'}`} onClick={linkEvent(this, this.handlePostLike)}>
<svg class="pointer icon upvote"><use xlinkHref="#icon-arrow-up"></use></svg>
</div>