diff options
author | Hailey <me@haileyok.com> | 2024-07-08 08:57:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 16:57:40 +0100 |
commit | d5503d17de4a3b8f2d769f7819baf47cf9b0a209 (patch) | |
tree | 7513e55558749147ce588dbb1983a976b3d9b46e /src/components/StarterPack/QrCode.tsx | |
parent | ea7afecf28e34b4d1006dc2340630a9f3ea6a9f7 (diff) | |
download | voidsky-d5503d17de4a3b8f2d769f7819baf47cf9b0a209.tar.zst |
Reduce the size of the inner logo in the QR code (#4746)
* use a scale of `1` on QR code inner logo * remove logo entirely * Revert "remove logo entirely" This reverts commit dee57f48c7bf5e3b5765631b8cbbd1c746e9c884. * use scale of 0.95
Diffstat (limited to 'src/components/StarterPack/QrCode.tsx')
-rw-r--r-- | src/components/StarterPack/QrCode.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/StarterPack/QrCode.tsx b/src/components/StarterPack/QrCode.tsx index 08ee03d62..a8a2e3491 100644 --- a/src/components/StarterPack/QrCode.tsx +++ b/src/components/StarterPack/QrCode.tsx @@ -110,7 +110,7 @@ export function QrCodeInner({link}: {link: string}) { innerEyesOptions={{borderRadius: 3}} logo={{ href: require('../../../assets/logo.png'), - scale: 1.2, + scale: 0.95, padding: 2, hidePieces: true, }} |