make QR img bigger, adjust css

This commit is contained in:
Tiago Vasconcelos
2023-10-11 15:45:42 +02:00
committed by Pavol Rusnak
parent ebaad7fe49
commit 371dacf8b2
2 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -368,8 +368,8 @@ Vue.component('lnbits-qrcode', {
template: `
<div class="qrcode__wrapper">
<qrcode :value="value"
:options="{errorCorrectionLevel: 'Q'}" class="rounded-borders"></qrcode>
<img class="qrcode__image" :src="logo" alt="..." />
:options="{errorCorrectionLevel: 'Q', width: 800}" class="rounded-borders"></qrcode>
<img class="qrcode__image" :src="logo" alt="..." />
</div>
`
})