Skip to content

Commit

Permalink
fix qr code on android as it is cut off (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
JannikStreek authored Dec 14, 2023
1 parent b793ac9 commit 9bb623c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class DialogShareComponent implements OnInit {
}

appendQrCode() {
const size: number = window.innerWidth > 400 ? 300 : 200;
const size: number = window.innerWidth > 500 ? 300 : 200;

this.qrCode = new QRCodeStyling({
...qrcodeStyling,
Expand Down

0 comments on commit 9bb623c

Please sign in to comment.