]> Untitled Git - lemmy.git/commitdiff
Making vote buttons bigger.
authorDessalines <tyhou13@gmx.com>
Tue, 24 Mar 2020 14:46:39 +0000 (10:46 -0400)
committerDessalines <tyhou13@gmx.com>
Tue, 24 Mar 2020 14:46:39 +0000 (10:46 -0400)
ui/src/components/post-listing.tsx

index c5afe9cee40acc476727b02dc3512fc9b2fcb76d..edb858ddfcd7f27d0a8060eb2d85af697896f07a 100644 (file)
@@ -250,7 +250,7 @@ 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 p-0 ${
+            className={`btn-animate btn btn-link btn-lg p-0 ${
               this.state.my_vote == 1 ? 'text-info' : 'text-muted'
             }`}
             onClick={linkEvent(this, this.handlePostLike)}
@@ -268,7 +268,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
           </div>
           {WebSocketService.Instance.site.enable_downvotes && (
             <button
-              className={`btn-animate btn btn-link p-0 ${
+              className={`btn-animate btn btn-link btn-lg p-0 ${
                 this.state.my_vote == -1 ? 'text-danger' : 'text-muted'
               }`}
               onClick={linkEvent(this, this.handlePostDisLike)}