From 8ca6c69af48bba15e37f70863e3c6f2dc0c8354b Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Tue, 11 Jun 2024 00:32:48 +0530 Subject: [PATCH] feat: add PUNCH to FlickerList --- src/components/FlickerList.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/FlickerList.tsx b/src/components/FlickerList.tsx index 5529cd2..d7218c1 100644 --- a/src/components/FlickerList.tsx +++ b/src/components/FlickerList.tsx @@ -47,12 +47,13 @@ const Flicker: React.FC<{ border: none; color: inherit; position: relative; + font-size: 0.9rem; `} ref={async el => { if (!el) return; - await sleep(150); - await sleep(250 * index); + await sleep(500); + await sleep(300 * index); el.style.opacity = "1"; await sleep(1000 + Math.random() * 1000);