Browse Source

fix(26-01): narrow initial view dialog to max-w-2xl

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 6 months ago
parent
commit
5aec401d08
  1. 2
      src/components/quickstart/WelcomeModal.tsx

2
src/components/quickstart/WelcomeModal.tsx

@ -75,7 +75,7 @@ export function WelcomeModal({
);
// Template explorer needs more width for two-column layout
const dialogWidth = currentView === "templates" ? "max-w-6xl" : "max-w-4xl";
const dialogWidth = currentView === "templates" ? "max-w-6xl" : "max-w-2xl";
const dialogHeight = currentView === "templates" ? "max-h-[85vh]" : "max-h-[80vh]";
return (

Loading…
Cancel
Save