From 7a9c01673f693204f4dcdb6a831179feb867a272 Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Wed, 9 Apr 2025 22:58:16 +0530 Subject: [PATCH] fix: avoid AnimateEntry conflict with Draggable over transform by using translate instead --- src/components/AnimateEntry.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AnimateEntry.tsx b/src/components/AnimateEntry.tsx index dded012..bbcce2b 100644 --- a/src/components/AnimateEntry.tsx +++ b/src/components/AnimateEntry.tsx @@ -33,11 +33,11 @@ export const AnimateEntry = forwardRef( @keyframes slideIn { from { opacity: 0; - transform: translateY(3rem); + translate: 0 3rem; } to { opacity: 1; - transform: translateY(0); + translate: 0 0; } } `,