increase QR-Code size as requested in #43 and fix overflow issues on iOS

This commit is contained in:
schlagmichdoch 2023-02-24 16:08:36 +01:00
parent ad109d1724
commit 0eb13d9d1b
8 changed files with 35 additions and 17 deletions

View file

@ -839,8 +839,8 @@ class PairDeviceDialog extends Dialog {
// Display the QR code for the url
const qr = new QRCode({
content: this._getShareRoomURL(),
width: 80,
height: 80,
width: 150,
height: 150,
padding: 0,
background: "transparent",
color: getComputedStyle(document.body).getPropertyValue('--text-color'),