Skip to content

Commit

Permalink
style improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed Oct 2, 2024
1 parent 5ae044b commit 47a3974
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions src/popup/components/ConnectWalletForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -404,23 +404,13 @@ const AutoKeyAddConsent: React.FC<{
const t = useTranslation();
return (
<form className="space-y-4" data-testid="connect-wallet-auto-key-consent">
<p className="text-sm text-medium">
{t('connectWalletKeyService_text_consent')}
</p>
<p className="text-medium">{t('connectWalletKeyService_text_consent')}</p>

<div className="flex justify-between gap-6">
<Button
type="button"
onClick={onAccept}
className="bg-green-600 text-white"
>
<div className="mx-auto flex w-3/4 justify-around gap-4">
<Button onClick={onAccept}>
{t('connectWalletKeyService_label_conceptAccept')}
</Button>
<Button
type="button"
onClick={onDecline}
className="bg-red-600 text-white"
>
<Button onClick={onDecline} variant="destructive">
{t('connectWalletKeyService_label_conceptDecline')}
</Button>
</div>
Expand Down

0 comments on commit 47a3974

Please sign in to comment.