Merge branch 'zap-button-update' into 'main'

Remove border of zap button

See merge request soapbox-pub/soapbox!3078
environments/review-main-yi2y9f/deployments/4724
Alex Gleason 2 months ago
commit f197231147

@ -81,7 +81,7 @@ const ZapPayRequestForm = ({ account, status }: IZapPayRequestForm) => {
</div>
<Input onChange={e => setZapComment(e.target.value)} type='text' placeholder={intl.formatMessage(messages.zap_commentPlaceholder)} />
<Button className='m-auto w-auto shadow-[0_4px_rgba(18,95,139,1)]' type='submit' theme='primary' icon={require('@tabler/icons/outline/bolt.svg')} text={renderZapButtonText()} disabled={zapAmount < 1 ? true : false} />
<Button className='m-auto w-auto' type='submit' theme='primary' icon={require('@tabler/icons/outline/bolt.svg')} text={renderZapButtonText()} disabled={zapAmount < 1 ? true : false} />
</Stack>
);
};

Loading…
Cancel
Save