diff --git a/frontend/src/components/dashboard/DashboardHeader.tsx b/frontend/src/components/dashboard/DashboardHeader.tsx index fb48629..bacd9d9 100644 --- a/frontend/src/components/dashboard/DashboardHeader.tsx +++ b/frontend/src/components/dashboard/DashboardHeader.tsx @@ -38,16 +38,16 @@ export function DashboardHeader({ quarter, stats, activeStatus, onStatusChange, {/* 중앙 상태 캡슐 */} -
+
{quarterLabel} · - + - - - + + + - +
@@ -82,13 +82,15 @@ interface StatPillProps { function StatPill({ label, value, statusKey, activeStatus, onClick, accent }: StatPillProps) { const isActive = activeStatus === statusKey; + const isIssue = statusKey === 'ISSUES'; + const background = isIssue + ? 'bg-[linear-gradient(180deg,#337c5f_0%,#1c4638_100%)]' + : 'bg-[linear-gradient(180deg,rgba(0,0,0,0.54)_0%,rgba(0,0,0,0.25)_20%,rgba(0,0,0,0.09)_80%,rgba(0,0,0,0.54)_100%)]'; return (