]> Untitled Git - lemmy-ui.git/commitdiff
fix vote button alignment
authorAlec Armbruster <35377827+alectrocute@users.noreply.github.com>
Mon, 26 Jun 2023 21:10:39 +0000 (17:10 -0400)
committerAlec Armbruster <35377827+alectrocute@users.noreply.github.com>
Mon, 26 Jun 2023 21:10:39 +0000 (17:10 -0400)
src/shared/components/common/vote-buttons.tsx

index 005db8c003ec5aecbe806d9ff5996a3f07841f8b..259d2161eb74fe342dc44056a58190f91ab424c6 100644 (file)
@@ -104,7 +104,7 @@ export class VoteButtonsCompact extends Component<
 
   render() {
     return (
-      <div>
+      <>
         <button
           type="button"
           className={`btn-animate btn py-0 px-1 ${
@@ -157,7 +157,7 @@ export class VoteButtonsCompact extends Component<
             )}
           </button>
         )}
-      </div>
+      </>
     );
   }
 }