style: update text colors in billing and credits balance cards for improved visibility
This commit is contained in:
parent
ac02ea780a
commit
8be9f6c775
@ -211,14 +211,14 @@ export default function BillingCard() {
|
||||
</div>
|
||||
|
||||
{nextBillingDate && (
|
||||
<div>
|
||||
<div className="text-green-600">
|
||||
{t('nextBillingDate')} {nextBillingDate}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{subscription.status === 'trialing' &&
|
||||
subscription.currentPeriodEnd && (
|
||||
<div className="text-amber-500">
|
||||
<div className="text-amber-600">
|
||||
{t('trialEnds')} {formatDate(subscription.currentPeriodEnd)}
|
||||
</div>
|
||||
)}
|
||||
|
@ -181,7 +181,7 @@ export default function CreditsBalanceCard() {
|
||||
{/* Expiring credits warning */}
|
||||
{creditStats.expiringCredits.amount > 0 &&
|
||||
creditStats.expiringCredits.earliestExpiration && (
|
||||
<div className="flex items-center gap-2 text-muted-foreground">
|
||||
<div className="flex items-center gap-2 text-amber-600">
|
||||
<span>
|
||||
{t('expiringCredits', {
|
||||
credits: creditStats.expiringCredits.amount,
|
||||
|
Loading…
Reference in New Issue
Block a user