Skip to content

Commit

Permalink
fix: padding of the link is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
negar-abbasi committed Oct 30, 2024
1 parent ee81009 commit f1f8298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/features/common/components/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const buttonVariants = cva(
['outline-secondary']: 'border border-secondary bg-transparent text-secondary hover:bg-accent hover:text-secondary/90',
secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80',
ghost: 'hover:bg-accent hover:text-accent-foreground',
link: 'text-primary underline-offset-4 hover:underline',
link: 'text-primary underline',
['no-style']: '',
},
size: {
Expand Down
2 changes: 1 addition & 1 deletion src/features/wallet/components/connect-wallet-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export function ConnectWalletButton() {
{networkConfig.id === 'localnet' && (
<>
<span className="inline-flex justify-center text-sm font-medium">OR</span>
<Button variant="link" onClick={() => setDialogOpen(false)}>
<Button variant="link" onClick={() => setDialogOpen(false)} className="h-0 pb-4">
<TemplatedNavLink urlTemplate={Urls.Fund} queryParams={{ create: true }}>
Create a funded dev account
</TemplatedNavLink>{' '}
Expand Down

0 comments on commit f1f8298

Please sign in to comment.