1
0
forked from baron/baron-sso

RP 카드 상태 라벨 글자색 변경

This commit is contained in:
2026-02-12 14:26:38 +09:00
parent be320c98bd
commit c8506e70d5

View File

@@ -1193,7 +1193,7 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
Container(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
decoration: BoxDecoration(
color: statusColor.withValues(alpha: 31),
color: statusColor,
borderRadius: BorderRadius.circular(999),
),
child: Text(
@@ -1203,9 +1203,9 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
'ui.userfront.dashboard.status.revoked',
fallback: '해지됨',
),
style: TextStyle(
style: const TextStyle(
fontSize: 11,
color: statusColor,
color: Colors.white,
fontWeight: FontWeight.w600,
),
),