From 288e05f6913302de12215157040dbae3c8e66870 Mon Sep 17 00:00:00 2001 From: EENE Dashboard Date: Sat, 6 Jun 2026 00:24:21 +0900 Subject: [PATCH] fix: match side-polygon-stats curved corners to reference hub Correct pseudo-element border-radius direction and allow header overflow so side curves render. Co-authored-by: Cursor --- frontend/src/components/dashboard/DashboardHeader.tsx | 2 +- frontend/src/index.css | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/dashboard/DashboardHeader.tsx b/frontend/src/components/dashboard/DashboardHeader.tsx index 2c073ac..3d5fa1b 100644 --- a/frontend/src/components/dashboard/DashboardHeader.tsx +++ b/frontend/src/components/dashboard/DashboardHeader.tsx @@ -53,7 +53,7 @@ export function DashboardHeader({ ]; return ( -
+
총괄기획실 diff --git a/frontend/src/index.css b/frontend/src/index.css index 53ee8a9..61a6d8e 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -52,14 +52,14 @@ body, .header-stats-bar::before, .side-polygon-stats::before { left: -35px; - border-top-left-radius: 20px; + border-top-right-radius: 20px; box-shadow: 18px 0 #093023; } .header-stats-bar::after, .side-polygon-stats::after { right: -35px; - border-top-right-radius: 20px; + border-top-left-radius: 20px; box-shadow: -18px 0 #093023; } @@ -93,6 +93,7 @@ body, justify-content: space-between; position: relative; z-index: 10; + overflow: visible; height: 48px; min-height: 48px; padding: 0 22px 0 20px;