Skip to content

Commit

Permalink
fix: adjust focus color for upload qr modal (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricio0312rev authored Jul 16, 2024
1 parent d11f88a commit bdeb896
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/send/UploadQRModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,11 @@ export const UploadQRModal = ({
maxSize={5}
onSizeError={handleSizeError}
onTypeError={handleTypeError}
tabIndex={-1}
classes='focus-within:!outline-theme-primary-600 rounded-2xl'
>
<Button variant='primary'>{t('PAGES.SEND.QR_MODAL.UPLOAD_QR')}</Button>
<Button variant='primary' tabIndex={-1}>
{t('PAGES.SEND.QR_MODAL.UPLOAD_QR')}
</Button>
</FileUploader>
</div>
)
Expand All @@ -157,6 +159,7 @@ export const UploadQRModal = ({
maxSize={5}
onSizeError={handleSizeError}
onTypeError={handleTypeError}
classes='focus-within:!outline-theme-primary-600 rounded-2xl'
>
<div className='h-50 w-[306px] cursor-pointer rounded-2xl border border-dashed border-theme-secondary-200 bg-theme-secondary-25 dark:border-theme-secondary-600 dark:bg-theme-secondary-800'>
<div className='relative flex items-center justify-center overflow-hidden'>
Expand Down

0 comments on commit bdeb896

Please sign in to comment.