From 9a7323eb28fcb3dc3149ebacf6fbeed4b33f1a31 Mon Sep 17 00:00:00 2001 From: vndangkhoa Date: Wed, 29 Apr 2026 15:52:57 +0700 Subject: [PATCH] mobile blink starts dim then briefly bright --- src/index.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/index.css b/src/index.css index 45868d3..b7c2405 100644 --- a/src/index.css +++ b/src/index.css @@ -182,26 +182,26 @@ body { @media (max-width: 500px) { @keyframes blink { - 0%, 5% { - opacity: 1; - } - 10%, 95% { + 0%, 3% { opacity: 0.15; } - 100% { + 8%, 12% { opacity: 1; } + 18%, 100% { + opacity: 0.15; + } } @-webkit-keyframes blink { - 0%, 5% { - opacity: 1; - } - 10%, 95% { + 0%, 3% { opacity: 0.15; } - 100% { + 8%, 12% { opacity: 1; } + 18%, 100% { + opacity: 0.15; + } } .tetris-board > div { animation-duration: 0.5s, 8s !important;