Skip to content

Commit

Permalink
fix: justification of harvest button on pool page
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlilley committed Jul 2, 2023
1 parent 03e2b94 commit 5f48e8d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion apps/evm/app/pool/position/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,13 @@ const Position: FC<{ params: { id: string } }> = ({ params }) => {
{({ write, isLoading }) => (
<Checker.Connect size="xs" variant="link">
<Checker.Network size="xs" variant="link" chainId={chainId}>
<Button disabled={isLoading} onClick={() => write?.()} size="xs" variant="link">
<Button
disabled={isLoading}
onClick={() => write?.()}
size="xs"
variant="link"
className="!justify-end"
>
Harvest
</Button>
</Checker.Network>
Expand Down

0 comments on commit 5f48e8d

Please sign in to comment.