From 3118dcebab673bae09fb890ad5e609e5058eb749 Mon Sep 17 00:00:00 2001 From: recanman <29310982+recanman@users.noreply.github.com> Date: Sat, 5 Oct 2024 00:36:52 -0700 Subject: [PATCH] feat: add donation qr css --- src/css/custom.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index 702ad95..6fda3a8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -122,6 +122,18 @@ p { .btn { 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 { @@ -136,4 +148,20 @@ p { top: -1px; border-width: 0.4rem 0.4rem 0; 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; } \ No newline at end of file