From d930c44bb0fad3f081d2676bc446a9ab50c0a692 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 22 Jun 2024 07:40:50 +0900 Subject: [PATCH] fix: add overflow-auto to support native scrolling --- packages/react/components/Drawer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/components/Drawer.tsx b/packages/react/components/Drawer.tsx index bceb316..054d32b 100644 --- a/packages/react/components/Drawer.tsx +++ b/packages/react/components/Drawer.tsx @@ -146,7 +146,7 @@ const drawerContentColors = { }; const [drawerContentVariant, resolveDrawerContentVariantProps] = vcn({ - base: `fixed ${drawerContentColors.background} ${drawerContentColors.border} transition-all p-4 flex flex-col justify-between gap-8`, + base: `fixed ${drawerContentColors.background} ${drawerContentColors.border} transition-all p-4 flex flex-col justify-between gap-8 overflow-auto`, variants: { position: { top: "top-0 inset-x-0 w-full max-w-screen rounded-t-lg border-b-2",