diff --git a/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index 3ffa65d..b0051ac 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/components/Dialog/Component.tsx @@ -55,7 +55,7 @@ const DialogTrigger = ({ children }: DialogTriggerProps) => { */ const [dialogOverlayVariant, resolveDialogOverlayVariant] = vcn({ - base: "fixed inset-0 z-50 w-full h-full max-w-screen transition-all duration-300 flex flex-col justify-center items-center", + base: "fixed inset-0 z-50 w-full h-screen overflow-y-auto max-w-screen transition-all duration-300", variants: { opened: { true: "pointer-events-auto opacity-100", @@ -72,9 +72,9 @@ const [dialogOverlayVariant, resolveDialogOverlayVariant] = vcn({ lg: "backdrop-brightness-50", }, padding: { - sm: "p-4", - md: "p-6", - lg: "p-8", + sm: "[&>div]:p-4", + md: "[&>div]:p-6", + lg: "[&>div]:p-8", }, }, defaults: { @@ -114,7 +114,10 @@ const DialogOverlay = React.forwardRef( onClick?.(e); }} > - {children} +
+ {/* Layer for overflow positioning */} + {children} +
, document.body, )}