Move create order QR to saved state

This commit is contained in:
sas.fajri
2026-04-13 19:05:03 +07:00
parent 0030cfb11a
commit 24921e836c
2 changed files with 177 additions and 82 deletions

View File

@@ -890,6 +890,44 @@ tr:last-child td {
gap: 18px;
}
.order-create-stack {
gap: 28px;
}
.order-created-shell {
gap: 22px;
}
.order-created-qr {
display: flex;
flex-direction: column;
gap: 12px;
align-items: center;
text-align: center;
}
.qr-preview {
display: grid;
place-items: center;
width: 100%;
min-height: 260px;
padding: 14px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.92);
border: 1px dashed rgba(185, 28, 28, 0.18);
}
.image_qrcode {
display: block;
width: 220px;
height: 220px;
object-fit: contain;
border-radius: 18px;
background: white;
padding: 10px;
box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.form {
display: grid;
gap: 16px;