]> Untitled Git - lemmy.git/commitdiff
Better offsets
authorDessalines <tyhou13@gmx.com>
Sun, 18 Aug 2019 02:31:32 +0000 (19:31 -0700)
committerDessalines <tyhou13@gmx.com>
Sun, 18 Aug 2019 02:31:32 +0000 (19:31 -0700)
ui/src/components/comment-node.tsx
ui/src/components/post-listing.tsx
ui/src/css/main.css

index a1ac93b3807c088407b9020f548863aab1de0526..45703945f6aa2216a6bb13362299256ebec20aeb 100644 (file)
@@ -61,7 +61,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
     let node = this.props.node;
     return (
       <div className={`comment ${node.comment.parent_id  && !this.props.noIndent ? 'ml-4' : ''}`}>
-        <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 ${node.comment.my_vote == 1 ? 'text-info' : 'text-muted'}`} onClick={linkEvent(node, this.handleCommentLike)}>
             <svg class="pointer icon upvote"><use xlinkHref="#icon-arrow-up"></use></svg>
           </div>
index 401da0e33f4e2ea921591d4afba48459f88c15de..dea6f1fbe1dd44e6ca8ab7b13086150eaf6ab23b 100644 (file)
@@ -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>
index 8ff742fad56dfe835657d77b5b83e7b262ab9cc2..8768caf00c43b52618ddc5e401a2b9859bb6788a 100644 (file)
@@ -67,6 +67,10 @@ body, .text-white, .navbar-brand, .badge-light, .btn-secondary {
   margin-bottom: 10px;
 }
 
+.vote-bar {
+  margin-top: -3px;
+}
+
 .icon {
   display: inline-flex;
   width: 1em;