summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-04-03 19:13:01 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-04-03 19:13:01 +0200
commite04aea5855062624a72ee8d00eb0c30a21b2072b (patch)
tree0dd40e7834fe7b22a83cddb4af65ffb5d9b9261b /src
parentae40a78519bebe74466866262eeb03a4535b3b16 (diff)
Force qrcode size to 300px
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/ContactDetails.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ContactDetails.vue b/src/components/ContactDetails.vue
index ac1ff0b1..7ac03c13 100644
--- a/src/components/ContactDetails.vue
+++ b/src/components/ContactDetails.vue
@@ -90,7 +90,7 @@
<!-- qrcode -->
<modal v-if="qrcode" id="qrcode-modal" :title="contact.displayName"
@close="closeQrModal">
- <img :src="`data:image/svg+xml;base64,${qrcode}`" class="qrcode">
+ <img :src="`data:image/svg+xml;base64,${qrcode}`" class="qrcode" width="300" height="300">
</modal>
</header>