From 943323782817efb88556e94c2bfd243aedf45561 Mon Sep 17 00:00:00 2001 From: 0xjaqbek Date: Mon, 15 Jul 2024 15:21:49 +0200 Subject: [PATCH] 234569 --- src/IndexPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IndexPage.tsx b/src/IndexPage.tsx index 3d0db46..20b7e02 100644 --- a/src/IndexPage.tsx +++ b/src/IndexPage.tsx @@ -18,7 +18,7 @@ const INITIAL_MOVE_DISTANCE = 0.01; // Initial distance to move road on each cli // Define the keyframes for the blinking animation const blink = keyframes` 0% { background-color: rgba(255, 255, 255, 0.0); } - 50% { background-color: rgba(255, 255, 255, 0.3); } + 50% { background-color: rgba(255, 255, 255, 0.1); } 100% { background-color: rgba(255, 255, 255, 1); } `; @@ -33,7 +33,7 @@ const CountdownText = styled.div` z-index: 3; text-shadow: 22px 22px 10px white; background-color: rgba(255, 255, 255, 0.5); // Black background with 50% opacity - padding: 150px 60px; + padding: 1500px 600px; animation: ${blink} 1s infinite; // Add the animation `;