From dd941114bd62d369b68d1b7b54ab8061c0865823 Mon Sep 17 00:00:00 2001 From: Aeonoi Date: Thu, 31 Oct 2024 16:59:54 -0400 Subject: [PATCH] fix(transition): fix projects not showing up on IPhone SE --- components/transition.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/transition.tsx b/components/transition.tsx index cf60974..de17d6e 100644 --- a/components/transition.tsx +++ b/components/transition.tsx @@ -13,7 +13,7 @@ const Transition: React.FC = ({ children }) => { whileInView={{ opacity: 1 }} exit={{ opacity: 0 }} transition={{ duration: 0.5, ease: "easeInOut", delay: 0.2 }} - viewport={{ once: false, amount: 0.3 }} + viewport={{ once: false, amount: 0.2 }} className="pt-14" > {children}