Merge pull request #1624 from LemmyNet/bugfix/vote-button-position

Fix `VoteButtons` positioning
This commit is contained in:
SleeplessOne1917 2023-06-26 21:19:19 +00:00 committed by GitHub
commit 25cd564dc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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