From f8d2e860fe219d77c3270578ab180357d47597ad Mon Sep 17 00:00:00 2001 From: JB Date: Sat, 11 Oct 2025 17:07:22 -0700 Subject: [PATCH] feat: Add styles for wizard card stages and forms --- abogen/web/static/styles.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/abogen/web/static/styles.css b/abogen/web/static/styles.css index af47c9c..676b89b 100644 --- a/abogen/web/static/styles.css +++ b/abogen/web/static/styles.css @@ -569,6 +569,20 @@ body { gap: 2rem; } + .wizard-card__stage { + flex: 1 1 auto; + display: flex; + flex-direction: column; + min-height: 0; + } + + .wizard-card__stage > form[data-wizard-form="true"] { + display: flex; + flex-direction: column; + flex: 1 1 auto; + min-height: 0; + } + .wizard-card__footer { display: flex; justify-content: space-between;