From 9789a5e931129530e555a2b1ddffaead9aac241f Mon Sep 17 00:00:00 2001 From: vibe-bot Date: Sat, 9 Aug 2025 21:34:16 +0200 Subject: [PATCH] =?UTF-8?q?Nightly:=20Rainbow-Flash=20verl=C3=A4ngert=20au?= =?UTF-8?q?f=202s=20(Animation=20+=20Timeout=20angepasst)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/App.tsx | 2 +- web/src/styles.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/App.tsx b/web/src/App.tsx index a844112..b0e41a3 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -601,7 +601,7 @@ export default function App() { const el = (e.currentTarget as HTMLDivElement | undefined); if (el) { el.classList.add('rainbow-flash'); - setTimeout(()=> el.classList.remove('rainbow-flash'), 1000); + setTimeout(()=> el.classList.remove('rainbow-flash'), 2000); } } } catch {} diff --git a/web/src/styles.css b/web/src/styles.css index 7ace006..af97ed4 100644 --- a/web/src/styles.css +++ b/web/src/styles.css @@ -328,7 +328,7 @@ body { [data-theme="rainbow"] .sound-btn.rainbow-flash { background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #80ff00, #00ff00, #00ff80, #00ffff, #0080ff, #0000ff, #8000ff, #ff00ff, #ff0080) !important; background-size: 400% 400% !important; - animation: chaos-rainbow-animation 1s ease-in-out 1; + animation: chaos-rainbow-animation 2s ease-in-out 1; color: #ffffff; }