ui: Fix QRCODE visibility

This commit is contained in:
gerlofvanek 2024-08-23 22:04:29 +02:00 committed by tecnovert
parent 75ad5a5b4d
commit 1564655777
No known key found for this signature in database
GPG key ID: 8ED6D8750C4E3F93
2 changed files with 17 additions and 13 deletions

View file

@ -199,14 +199,14 @@
.qrcode-border {
border: 2px solid;
border-color: rgba(59, 130, 246, var(--tw-border-opacity));
border-radius: 20px;
background-color: #ffffff;
border-radius: 0px;
}
.qrcode img {
width: 100%;
height: auto;
border-radius: 15px;
border-radius: 0px;
}
#showQR {
@ -217,6 +217,10 @@
height:25px;
}
.qrcode-container {
margin-top: 25px;
}
select.select-disabled {
opacity: 0.40 !important;

View file

@ -388,8 +388,8 @@
var qrCodeStealth = new QRCode(document.getElementById("qrcode-stealth"), {
text: stealthAddress,
width: 170,
height: 170,
width: 200,
height: 200,
colorDark: "#000000",
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.L
@ -404,8 +404,8 @@
var qrCodeMWEB = new QRCode(document.getElementById("qrcode-mweb"), {
text: mwebAddress,
width: 170,
height: 170,
width: 200,
height: 200,
colorDark: "#000000",
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.L
@ -420,8 +420,8 @@
var qrCodeMoneroSub = new QRCode(document.getElementById("qrcode-monero-sub"), {
text: moneroSubAddress,
width: 170,
height: 170,
width: 200,
height: 200,
colorDark: "#000000",
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.L
@ -433,8 +433,8 @@
var qrCodeMoneroMain = new QRCode(document.getElementById("qrcode-monero-main"), {
text: moneroMainAddress,
width: 170,
height: 170,
width: 200,
height: 200,
colorDark: "#000000",
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.L
@ -447,8 +447,8 @@
var qrCodeDepost = new QRCode(document.getElementById("qrcode-deposit"), {
text: defaultAddress,
width: 170,
height: 170,
width: 200,
height: 200,
colorDark: "#000000",
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.L