feat: isolate voucher check ui and qr scanner modes

This commit is contained in:
dyzulk
2026-01-12 10:47:22 +07:00
parent 06205ee56b
commit 98a6f4304c
5 changed files with 160 additions and 44 deletions

View File

@@ -664,10 +664,30 @@ footer {
z-index: 10;
}
#qr-confirm-overlay.hidden {
#qr-confirm-overlay.hidden, .modal.hidden {
display: none;
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.85);
backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
z-index: 2000;
}
.modal-content {
width: 100%;
max-width: 320px;
}
.confirm-card {
background: var(--bg-secondary);
border: 1px solid var(--border);