Make all status badges pill-shaped and standardize pending color
- Add rounded-full to all status badges across admin and member pages - Change Pending badge color from bg-secondary to bg-amber-500 text-white - Update AdminDashboard to use Badge component instead of inline span - Standardize badge colors everywhere: - Paid (Lunas): bg-brand-accent text-white - Pending: bg-amber-500 text-white - Cancelled: bg-destructive text-white 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -298,7 +298,7 @@ export default function MemberDashboard() {
|
||||
</p>
|
||||
</div>
|
||||
<div className="flex items-center gap-4">
|
||||
<Badge className={order.payment_status === "paid" ? "bg-brand-accent text-white border-2" : "bg-amber-500 text-white border-2 border-amber-600"}>
|
||||
<Badge className={order.payment_status === "paid" ? "bg-brand-accent text-white" : "bg-amber-500 text-white"} rounded-full>
|
||||
{order.payment_status === "paid" ? "Lunas" : "Pending"}
|
||||
</Badge>
|
||||
<span className="font-bold">{formatIDR(order.total_amount)}</span>
|
||||
|
||||
Reference in New Issue
Block a user