From d620c397801199c1fccf471efec3bf464e94a366 Mon Sep 17 00:00:00 2001 From: onghwan Date: Thu, 28 Nov 2024 00:59:04 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20Add=20pointerEvents:=20=E2=80=98box-none?= =?UTF-8?q?=E2=80=99=20to=20ItemLayout=20component=20to=20allow=20touches?= =?UTF-8?q?=20for=20children=20components=20outside=20item=20boundaries?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ItemLayout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ItemLayout.tsx b/src/components/ItemLayout.tsx index 1218a384..fb432684 100644 --- a/src/components/ItemLayout.tsx +++ b/src/components/ItemLayout.tsx @@ -73,6 +73,7 @@ export const ItemLayout: React.FC<{ width: width || "100%", height: height || "100%", position: "absolute", + pointerEvents: "box-none", }, animatedStyle, ]}