From dfbb53065eb397b30d750c8732787fabd6ca0a97 Mon Sep 17 00:00:00 2001 From: hyunho Date: Wed, 25 Mar 2026 13:01:21 +0900 Subject: [PATCH] =?UTF-8?q?=ED=97=A4=EB=8D=94=20=ED=83=AD=20hover=20?= =?UTF-8?q?=EB=B0=98=EC=9D=91=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/public/styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/public/styles.css b/frontend/public/styles.css index e0471b2..dfa122f 100644 --- a/frontend/public/styles.css +++ b/frontend/public/styles.css @@ -205,6 +205,8 @@ color: var(--color-text-muted); font-size: 12px; font-weight: 800; + cursor: pointer; + transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease; } .nav-pill.active { @@ -218,6 +220,12 @@ color: #64748b; } +.nav-pill:hover { + transform: translateY(-1px); + border-color: #c7d2fe; + box-shadow: 0 8px 18px rgba(148, 163, 184, 0.16); +} + .header-actions { display: flex; align-items: center;