feat(subscription): 5축 점수 breakdown 시각화 + 알림 대상 카운트

- AnnouncementDetail: 5축(지역/유형/면적/가격/자격) progress bar 추가
- MatchesTab: 카드마다 미니 5축 비례 바 추가 (색상 구분)
- ProfileTab: 마운트 시 dashboard도 함께 fetch → pass_count 취득
- NotificationSettings: passCount prop → "현재 N건 대상" 인라인 표시
- Subscription.css: .ns-pass-count 스타일 추가

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-01 08:56:36 +09:00
parent 573c0364bb
commit 7cbdbe6e8b
3 changed files with 93 additions and 11 deletions

View File

@@ -1534,3 +1534,18 @@ input.sub-toggle:checked + .sub-toggle__label { color: var(--accent-subscription
grid-template-columns: 1fr;
}
}
/* === 신규: 알림 대상 카운트 뱃지 ===================================== */
.ns-pass-count {
display: inline-block;
margin-left: 8px;
padding: 1px 8px;
border-radius: 10px;
background: rgba(0, 212, 255, 0.12);
color: #00d4ff;
font-size: 11px;
font-weight: 600;
}
.ns-pass-count strong {
font-weight: 700;
}