This commit is contained in:
naielv
2025-08-12 09:38:50 +02:00
parent 8fc2e96985
commit 0c4c9df396
2 changed files with 3 additions and 2 deletions

View File

@@ -993,9 +993,10 @@ function BuildQR(mid) {
var svg = QRCode({
msg: mid,
pad: 2,
dim: 150
}).outerHTML;
return `<span style="display: inline-block; height: 250px; width: 250px; background-color: white;">${svg}</span>`
return `<span style="display: inline-block; height: 150px; width: 150px; background-color: white;">${svg}</span>`
}
const PAGES = {};