fix colors in dashboard (#206)

This commit is contained in:
KM Koushik
2025-08-30 15:59:23 +10:00
committed by GitHub
parent f18a6b514b
commit 1869bf427c
24 changed files with 133 additions and 107 deletions

View File

@@ -36,7 +36,7 @@ export const PlanDetails = () => {
<ul className="mt-4 space-y-3">
{perks.map((perk, index) => (
<li key={index} className="flex items-center gap-2">
<CheckCircle2 className="h-4 w-4 text-green-500 flex-shrink-0" />
<CheckCircle2 className="h-4 w-4 text-green flex-shrink-0" />
<span className="text-sm">{perk}</span>
</li>
))}

View File

@@ -52,7 +52,7 @@ export const UpgradeModal = () => {
<ul className="space-y-2">
{basicPlanPerks.map((perk, index) => (
<li key={index} className="flex items-start gap-2">
<CheckCircle2 className="h-4 w-4 text-green-500 flex-shrink-0 mt-0.5" />
<CheckCircle2 className="h-4 w-4 text-green flex-shrink-0 mt-0.5" />
<span className="text-sm">{perk}</span>
</li>
))}