From cc495be879f3741db90bf0d6022c3ebf1fc75757 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 22 Jun 2024 07:43:47 +0900 Subject: [PATCH] fix: update drawer to latest this update allows drawer to support native scrolling, with touch scrolling in mobile device --- src/pswui/components/Drawer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pswui/components/Drawer.tsx b/src/pswui/components/Drawer.tsx index bceb316..77d4e0c 100644 --- a/src/pswui/components/Drawer.tsx +++ b/src/pswui/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", @@ -155,7 +155,7 @@ const [drawerContentVariant, resolveDrawerContentVariantProps] = vcn({ right: "right-0 inset-y-0 h-screen rounded-r-lg border-l-2", }, opened: { - true: "touch-none", + true: "", false: "[&.top-0]:-translate-y-full [&.bottom-0]:translate-y-full [&.left-0]:-translate-x-full [&.right-0]:translate-x-full", },