From ce43e40fb7eb93e18e87a6c89ed2e86b858a5bfd Mon Sep 17 00:00:00 2001 From: shrimbly Date: Fri, 16 Jan 2026 23:24:43 +1300 Subject: [PATCH] fix(26-01): make dialog width conditional on current view - Template explorer: max-w-6xl, max-h-[85vh] - Initial and vibe views: max-w-4xl, max-h-[80vh] (original size) Co-Authored-By: Claude Opus 4.5 --- src/components/quickstart/WelcomeModal.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/quickstart/WelcomeModal.tsx b/src/components/quickstart/WelcomeModal.tsx index a28efbf8..757f8e31 100644 --- a/src/components/quickstart/WelcomeModal.tsx +++ b/src/components/quickstart/WelcomeModal.tsx @@ -74,12 +74,16 @@ export function WelcomeModal({ [onWorkflowGenerated] ); + // Template explorer needs more width for two-column layout + const dialogWidth = currentView === "templates" ? "max-w-6xl" : "max-w-4xl"; + const dialogHeight = currentView === "templates" ? "max-h-[85vh]" : "max-h-[80vh]"; + return (
e.stopPropagation()} > -
+
{currentView === "initial" && (