Skip to content

Commit

Permalink
style: fix swap button icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ogous committed Aug 15, 2024
1 parent 33bf721 commit 79ea63f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/app/SwapButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ export const SwapButton = ({ onClick }: { onClick?: () => void }) => (
className="z-10 flex size-[40px] cursor-pointer items-center justify-center bg-white"
onClick={onClick}
>
<Swap className="w-[10px]" />
<Swap className="h-[17px] w-[11px]" />
</motion.div>
);
2 changes: 1 addition & 1 deletion web/src/components/SwapForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ export const SwapForm = () => {
}
onClick={flipTokens}
>
<Swap />
<Swap className="h-[17px] w-[11px]" />
</Button>

<div className="mt-[-12px] flex h-[102px] w-[317px] flex-col justify-between rounded-lg bg-black pb-[19px] pl-[21px] pr-[15px] pt-[17px] text-white md:mt-[-15px] md:h-[126.37px] md:w-[392.42px] md:pl-[25px] md:pr-[20px] md:pt-[22px]">
Expand Down

0 comments on commit 79ea63f

Please sign in to comment.