From 2db3c12fc64dfb93a928612a30df13ca15ec8e5e Mon Sep 17 00:00:00 2001 From: Tetardtek Date: Fri, 20 Mar 2026 16:22:29 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20particule=20clic=20plus=20visible=20(plu?= =?UTF-8?q?s=20grosse,=20glow,=20dur=C3=A9e=201.2s)=20+=20label=20/clic=20?= =?UTF-8?q?explicite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Frontend/src/components/CockpitHeader.tsx | 2 +- Frontend/src/scss/home.scss | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Frontend/src/components/CockpitHeader.tsx b/Frontend/src/components/CockpitHeader.tsx index fe6e465..5f29148 100644 --- a/Frontend/src/components/CockpitHeader.tsx +++ b/Frontend/src/components/CockpitHeader.tsx @@ -19,7 +19,7 @@ export function CockpitHeader() {
- Ponte + /clic {formatNumber(clickGain)}
diff --git a/Frontend/src/scss/home.scss b/Frontend/src/scss/home.scss index e8f8c8e..f81159a 100755 --- a/Frontend/src/scss/home.scss +++ b/Frontend/src/scss/home.scss @@ -84,22 +84,25 @@ position: fixed; pointer-events: none; font-family: var(--font); - font-size: 1.2rem; - font-weight: 700; + font-size: 1.6rem; + font-weight: 800; color: #34d399; - text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); + text-shadow: 0 0 8px rgba(52, 211, 153, 0.6), 0 2px 4px rgba(0, 0, 0, 0.7); z-index: 100; - animation: float-up 0.8s ease-out forwards; + animation: float-up 1.2s ease-out forwards; } @keyframes float-up { 0% { opacity: 1; - transform: translateY(0) scale(1); + transform: translateY(0) scale(1.2); + } + 60% { + opacity: 0.9; } 100% { opacity: 0; - transform: translateY(-60px) scale(1.3); + transform: translateY(-80px) scale(1.5); } }