From 0b51aa15ffb5cf36f3b52a0ea21f1ce3e6c4fb72 Mon Sep 17 00:00:00 2001 From: dekun Date: Wed, 29 Jul 2026 21:47:08 +0800 Subject: [PATCH] Stop sticky header so nav no longer overlaps funds bar on scroll. Transparent sticky header let scrolling stats text bleed through the nav labels. Co-authored-by: Cursor --- frontend/src/styles/app.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/styles/app.css b/frontend/src/styles/app.css index 9c1c6ac..a888652 100644 --- a/frontend/src/styles/app.css +++ b/frontend/src/styles/app.css @@ -98,9 +98,9 @@ input { align-items: stretch; gap: 10px; padding: 14px 0 8px; - position: sticky; - top: 0; - z-index: 10; + /* 不 sticky:透明背景吸顶时会与下方资金条文字重叠 */ + position: relative; + z-index: 1; background: transparent; }