summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post-listing.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-03-24 14:41:46 -0400
committerDessalines <tyhou13@gmx.com>2020-03-24 14:41:46 -0400
commit83c7d82fce4aa42a8aace0b09603a20c28982d88 (patch)
treeefb757f513296898aabf4abd0365be2996848db9 /ui/src/components/post-listing.tsx
parentac6dc65342319bde26ef408352de19f937500059 (diff)
Changing post voting arrows.
Diffstat (limited to 'ui/src/components/post-listing.tsx')
-rw-r--r--ui/src/components/post-listing.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/src/components/post-listing.tsx b/ui/src/components/post-listing.tsx
index edb858dd..ff863dcb 100644
--- a/ui/src/components/post-listing.tsx
+++ b/ui/src/components/post-listing.tsx
@@ -250,14 +250,14 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<div class="row">
<div className={`vote-bar col-1 pr-0 small text-center`}>
<button
- className={`btn-animate btn btn-link btn-lg p-0 ${
+ className={`btn-animate btn btn-link p-0 ${
this.state.my_vote == 1 ? 'text-info' : 'text-muted'
}`}
onClick={linkEvent(this, this.handlePostLike)}
data-tippy-content={i18n.t('upvote')}
>
<svg class="icon upvote">
- <use xlinkHref="#icon-arrow-up"></use>
+ <use xlinkHref="#icon-arrow-up1"></use>
</svg>
</button>
<div
@@ -268,14 +268,14 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
</div>
{WebSocketService.Instance.site.enable_downvotes && (
<button
- className={`btn-animate btn btn-link btn-lg p-0 ${
+ className={`btn-animate btn btn-link p-0 ${
this.state.my_vote == -1 ? 'text-danger' : 'text-muted'
}`}
onClick={linkEvent(this, this.handlePostDisLike)}
data-tippy-content={i18n.t('downvote')}
>
<svg class="icon downvote">
- <use xlinkHref="#icon-arrow-down"></use>
+ <use xlinkHref="#icon-arrow-down1"></use>
</svg>
</button>
)}