add contextual prompts for skipped setup steps
All checks were successful
deploy / deploy (push) Successful in 1m26s

Disable checkout when Stripe isn't connected (cart drawer, cart page,
and early guard in checkout controller to prevent orphaned orders).
Show amber warning on order detail when email isn't configured.
Fix pre-existing missing vertical spacing between page blocks.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey
2026-03-04 14:02:49 +00:00
parent 005ebca432
commit 67a26eb6b4
10 changed files with 122 additions and 53 deletions

View File

@@ -1022,6 +1022,9 @@
max-width: 80rem;
margin-inline: auto;
padding: 2rem 1rem;
display: flex;
flex-direction: column;
gap: 2rem;
}
/* ── Shop container (body-level defaults) ── */
@@ -1528,6 +1531,17 @@
cursor: pointer;
font-family: var(--t-font-body);
margin-bottom: 0.5rem;
&:disabled {
opacity: 0.5;
cursor: not-allowed;
}
}
.cart-drawer-notice {
font-size: var(--t-text-sm);
color: var(--t-text-secondary);
text-align: center;
}
/* ── Cart item row ── */
@@ -1864,6 +1878,13 @@
text-align: center;
}
.order-summary-notice {
font-size: var(--t-text-sm);
color: var(--t-text-secondary);
text-align: center;
margin-bottom: 0.75rem;
}
/* ── Content body ── */
.content-body {

View File

@@ -284,6 +284,11 @@
cursor: pointer;
padding: 0.75rem 1.5rem;
font-weight: 600;
&:disabled {
opacity: 0.5;
cursor: not-allowed;
}
}
& .themed-button-outline {