Skip to content

Commit

Permalink
fix: make Bridge button error text same size as submit text
Browse files Browse the repository at this point in the history
  • Loading branch information
dib542 committed Jan 29, 2024
1 parent d06b8c2 commit 60afa2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/cards/BridgeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ function BridgeButton({
!Number(value)
) {
return (
<button type="submit" className="button-primary h3 p-4" disabled>
<button type="submit" className="button-primary h4 p-4" disabled>
Bridge {chainFromAsset?.symbol}
</button>
);
Expand All @@ -518,7 +518,7 @@ function BridgeButton({
type={errorMessage ? 'button' : 'submit'}
onClick={() => undefined}
className={[
'h3 p-4',
'h4 p-4',
errorMessage ? 'button-error' : 'button-primary',
].join(' ')}
>
Expand Down

0 comments on commit 60afa2f

Please sign in to comment.