From: Alec Armbruster <35377827+alectrocute@users.noreply.github.com> Date: Mon, 26 Jun 2023 21:10:39 +0000 (-0400) Subject: fix vote button alignment X-Git-Url: http://these/git/%24%7B%60data:application/static/%7B%60%24%7BarchiveTodayUrl%7D/?a=commitdiff_plain;h=28661dfacfd821a1ed4290982baf0685eccf4968;p=lemmy-ui.git fix vote button alignment --- diff --git a/src/shared/components/common/vote-buttons.tsx b/src/shared/components/common/vote-buttons.tsx index 005db8c..259d216 100644 --- a/src/shared/components/common/vote-buttons.tsx +++ b/src/shared/components/common/vote-buttons.tsx @@ -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> + </> ); } }