feat: add donation qr css

This commit is contained in:
recanman 2024-10-05 00:36:52 -07:00
parent ce610fbea5
commit 3118dcebab

View file

@ -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;
}