From 15fb59681f40d71cd9e4646f4efaaad889a7f02f Mon Sep 17 00:00:00 2001 From: Dreamacro <8615343+Dreamacro@users.noreply.github.com> Date: Wed, 22 Feb 2023 15:39:17 +0800 Subject: [PATCH] Fix: connection detail not display --- src/components/Drawer/index.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/Drawer/index.tsx b/src/components/Drawer/index.tsx index ccfdc30..e565170 100644 --- a/src/components/Drawer/index.tsx +++ b/src/components/Drawer/index.tsx @@ -21,11 +21,15 @@ export function Drawer (props: DrawerProps) { return () => { document.body.removeChild(current) } }, []) - const cardStyle = 'absolute h-full right-0 transition-transform transform translate-x-full duration-100 pointer-events-auto' + const cardStyle = 'absolute h-full right-0 transition-transform transform duration-100 pointer-events-auto' const container = (
- {props.children} + {props.children}
)