mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-05 18:38:09 +01:00
ui: Fix QRCODE visibility
This commit is contained in:
@@ -199,14 +199,14 @@
|
|||||||
|
|
||||||
.qrcode-border {
|
.qrcode-border {
|
||||||
border: 2px solid;
|
border: 2px solid;
|
||||||
border-color: rgba(59, 130, 246, var(--tw-border-opacity));
|
background-color: #ffffff;
|
||||||
border-radius: 20px;
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.qrcode img {
|
.qrcode img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
border-radius: 15px;
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#showQR {
|
#showQR {
|
||||||
@@ -217,6 +217,10 @@
|
|||||||
height:25px;
|
height:25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.qrcode-container {
|
||||||
|
margin-top: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
select.select-disabled {
|
select.select-disabled {
|
||||||
opacity: 0.40 !important;
|
opacity: 0.40 !important;
|
||||||
|
|||||||
@@ -388,8 +388,8 @@
|
|||||||
|
|
||||||
var qrCodeStealth = new QRCode(document.getElementById("qrcode-stealth"), {
|
var qrCodeStealth = new QRCode(document.getElementById("qrcode-stealth"), {
|
||||||
text: stealthAddress,
|
text: stealthAddress,
|
||||||
width: 170,
|
width: 200,
|
||||||
height: 170,
|
height: 200,
|
||||||
colorDark: "#000000",
|
colorDark: "#000000",
|
||||||
colorLight: "#ffffff",
|
colorLight: "#ffffff",
|
||||||
correctLevel: QRCode.CorrectLevel.L
|
correctLevel: QRCode.CorrectLevel.L
|
||||||
@@ -404,8 +404,8 @@
|
|||||||
|
|
||||||
var qrCodeMWEB = new QRCode(document.getElementById("qrcode-mweb"), {
|
var qrCodeMWEB = new QRCode(document.getElementById("qrcode-mweb"), {
|
||||||
text: mwebAddress,
|
text: mwebAddress,
|
||||||
width: 170,
|
width: 200,
|
||||||
height: 170,
|
height: 200,
|
||||||
colorDark: "#000000",
|
colorDark: "#000000",
|
||||||
colorLight: "#ffffff",
|
colorLight: "#ffffff",
|
||||||
correctLevel: QRCode.CorrectLevel.L
|
correctLevel: QRCode.CorrectLevel.L
|
||||||
@@ -420,8 +420,8 @@
|
|||||||
|
|
||||||
var qrCodeMoneroSub = new QRCode(document.getElementById("qrcode-monero-sub"), {
|
var qrCodeMoneroSub = new QRCode(document.getElementById("qrcode-monero-sub"), {
|
||||||
text: moneroSubAddress,
|
text: moneroSubAddress,
|
||||||
width: 170,
|
width: 200,
|
||||||
height: 170,
|
height: 200,
|
||||||
colorDark: "#000000",
|
colorDark: "#000000",
|
||||||
colorLight: "#ffffff",
|
colorLight: "#ffffff",
|
||||||
correctLevel: QRCode.CorrectLevel.L
|
correctLevel: QRCode.CorrectLevel.L
|
||||||
@@ -433,8 +433,8 @@
|
|||||||
|
|
||||||
var qrCodeMoneroMain = new QRCode(document.getElementById("qrcode-monero-main"), {
|
var qrCodeMoneroMain = new QRCode(document.getElementById("qrcode-monero-main"), {
|
||||||
text: moneroMainAddress,
|
text: moneroMainAddress,
|
||||||
width: 170,
|
width: 200,
|
||||||
height: 170,
|
height: 200,
|
||||||
colorDark: "#000000",
|
colorDark: "#000000",
|
||||||
colorLight: "#ffffff",
|
colorLight: "#ffffff",
|
||||||
correctLevel: QRCode.CorrectLevel.L
|
correctLevel: QRCode.CorrectLevel.L
|
||||||
@@ -447,8 +447,8 @@
|
|||||||
|
|
||||||
var qrCodeDepost = new QRCode(document.getElementById("qrcode-deposit"), {
|
var qrCodeDepost = new QRCode(document.getElementById("qrcode-deposit"), {
|
||||||
text: defaultAddress,
|
text: defaultAddress,
|
||||||
width: 170,
|
width: 200,
|
||||||
height: 170,
|
height: 200,
|
||||||
colorDark: "#000000",
|
colorDark: "#000000",
|
||||||
colorLight: "#ffffff",
|
colorLight: "#ffffff",
|
||||||
correctLevel: QRCode.CorrectLevel.L
|
correctLevel: QRCode.CorrectLevel.L
|
||||||
|
|||||||
Reference in New Issue
Block a user