mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 15:58:17 +00:00
ui: Fix QRCODE visibility
This commit is contained in:
parent
75ad5a5b4d
commit
1564655777
2 changed files with 17 additions and 13 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue