Ajusta widgets do dashboard

This commit is contained in:
Felipe Coutinho
2026-06-13 11:04:54 -03:00
parent 4cbdddb12e
commit 833845b5cf
9 changed files with 114 additions and 35 deletions

View File

@@ -65,7 +65,7 @@ export function BillListItem({ bill, period, onPay }: BillListItemProps) {
<TooltipTrigger asChild>
<span
className={cn(
"cursor-help rounded-full py-0.5",
"cursor-help",
bill.isSettled && "text-success font-semibold",
overdue && "text-destructive font-semibold",
)}
@@ -80,7 +80,6 @@ export function BillListItem({ bill, period, onPay }: BillListItemProps) {
) : (
<span
className={cn(
"rounded-full py-0.5",
bill.isSettled && "text-success font-semibold",
overdue && "text-destructive font-semibold",
)}