Skip to content

Commit 3a939cf

Browse files
authored
Merge pull request #434 from algorandfoundation/chore/tweak-qr
chore: make qr more scanable
2 parents 1e756ed + 8e99d8e commit 3a939cf

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

package-lock.json

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/features/accounts/components/address-qr-dialog-button.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ export function OpenAddressQRDialogButton({ address, className }: Props) {
4646
<div className="flex w-full max-w-full items-center justify-center">
4747
<span className="max-w-full truncate text-center">{address}</span>
4848
</div>
49-
<QRCode className="w-full" value={`algorand://${address}`} />
49+
<div className="bg-white p-2">
50+
<QRCode className="w-full" value={`algorand://${address}`} />
51+
</div>
5052
<p>Scan the QR code to copy the address</p>
5153
</div>
5254
</MediumSizeDialogBody>

0 commit comments

Comments
 (0)