feat: add donation qr css
This commit is contained in:
parent
ce610fbea5
commit
3118dcebab
1 changed files with 28 additions and 0 deletions
|
@ -122,6 +122,18 @@ p {
|
||||||
.btn {
|
.btn {
|
||||||
min-width: 38px;
|
min-width: 38px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#donation-qr {
|
||||||
|
width: auto;
|
||||||
|
height: 80vh;
|
||||||
|
max-width: 600px;
|
||||||
|
max-height: 600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#donation-qr-container {
|
||||||
|
height: auto;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bs-tooltip-auto {
|
.bs-tooltip-auto {
|
||||||
|
@ -137,3 +149,19 @@ p {
|
||||||
border-width: 0.4rem 0.4rem 0;
|
border-width: 0.4rem 0.4rem 0;
|
||||||
border-top-color: #000;
|
border-top-color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#donation-qr-container {
|
||||||
|
display: none;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#donation-qr {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#donation-qr-toggle:checked ~ #donation-qr-container {
|
||||||
|
display: flex;
|
||||||
|
}
|
Loading…
Reference in a new issue