export base44 - Nov 18

This commit is contained in:
bwnyasse
2025-11-18 21:32:16 -05:00
parent f7c2027065
commit d26bcaeed2
67 changed files with 13716 additions and 8102 deletions

View File

@@ -29,7 +29,7 @@ const statusColors = {
'Overdue': 'bg-red-500 text-white',
'Resolved': 'bg-blue-500 text-white',
'Paid': 'bg-green-500 text-white',
'Reconciled': 'bg-yellow-600 text-white',
'Reconciled': 'bg-amber-600 text-white', // Changed from bg-yellow-600
'Disputed': 'bg-gray-500 text-white',
'Verified': 'bg-teal-500 text-white',
'Pending': 'bg-amber-500 text-white',
@@ -161,7 +161,7 @@ export default function Invoices() {
<Button
onClick={() => setShowPaymentDialog(true)}
variant="outline"
className="bg-yellow-400 hover:bg-yellow-500 text-slate-900 border-0 font-semibold"
className="bg-amber-500 hover:bg-amber-600 text-white border-0 font-semibold" // Changed className
>
Record Payment
</Button>