diff --git a/src/components/accounting/IncomeStatement/MonthlyView.tsx b/src/components/accounting/IncomeStatement/MonthlyView.tsx index ef1eaff4..5d74d5f5 100644 --- a/src/components/accounting/IncomeStatement/MonthlyView.tsx +++ b/src/components/accounting/IncomeStatement/MonthlyView.tsx @@ -90,7 +90,7 @@ function SingleMonthView({ {sections.map((section) => { const isHighlight = HIGHLIGHT_CODES.includes(section.code); - const highlightClass = isHighlight ? 'bg-green-50' : ''; + const highlightClass = isHighlight ? 'bg-green-50 hover:bg-green-50' : 'hover:bg-transparent'; // 계산 항목 또는 세부과목 없는 항목 if (section.items.length === 0) { @@ -136,7 +136,7 @@ function SingleMonthSectionRows({ }) { return ( <> - + {section.code}. {section.name} @@ -146,7 +146,7 @@ function SingleMonthSectionRows({ {section.items.map((item, idx) => { const isLast = idx === lastIdx; return ( - + {item.name} @@ -221,17 +221,17 @@ function AllMonthsView({
- + - 과목 + 과 목 {months.map((m) => ( {m.label} @@ -247,7 +247,7 @@ function AllMonthsView({ return ( {/* 섹션 헤더 — 금액 표시 안 함 */} - + {code}. {name} @@ -192,7 +192,7 @@ function SectionRows({ {items.map((item, idx) => { const isLast = idx === lastIdx; return ( - + {item.name}