diff --git a/src/components/templates/WizardLayout/WizardLayout.tsx b/src/components/templates/WizardLayout/WizardLayout.tsx index 98be83e..6b7020a 100644 --- a/src/components/templates/WizardLayout/WizardLayout.tsx +++ b/src/components/templates/WizardLayout/WizardLayout.tsx @@ -342,6 +342,11 @@ export const WizardLayout = React.forwardRef( flexDirection: 'column', minHeight: '100vh', bgcolor: 'background.default', + // list-map: lock to viewport so only the left panel scrolls + ...(variant === 'list-map' && { + height: '100vh', + overflow: 'hidden', + }), }, ...(Array.isArray(sx) ? sx : [sx]), ]} @@ -363,7 +368,10 @@ export const WizardLayout = React.forwardRef( )} {/* Main content area */} - +