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); } }