about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-07-08 08:57:40 -0700
committerGitHub <noreply@github.com>2024-07-08 16:57:40 +0100
commitd5503d17de4a3b8f2d769f7819baf47cf9b0a209 (patch)
tree7513e55558749147ce588dbb1983a976b3d9b46e
parentea7afecf28e34b4d1006dc2340630a9f3ea6a9f7 (diff)
downloadvoidsky-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
-rw-r--r--src/components/StarterPack/QrCode.tsx2
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,
       }}