+
+
+
+
-
-
-
no mês anterior
+
+
vs
+
+
+ {percentChange ? (
+
+ ) : (
+ 0%
+ )}
+
+
+
diff --git a/src/features/dashboard/components/widgets/income-expense-balance-widget.tsx b/src/features/dashboard/components/widgets/income-expense-balance-widget.tsx
index 807f57b..92fa782 100644
--- a/src/features/dashboard/components/widgets/income-expense-balance-widget.tsx
+++ b/src/features/dashboard/components/widgets/income-expense-balance-widget.tsx
@@ -19,15 +19,15 @@ type IncomeExpenseBalanceWidgetProps = {
const chartConfig = {
receita: {
label: "Receita",
- color: "var(--success)",
+ color: "var(--chart-1)",
},
despesa: {
label: "Despesa",
- color: "var(--destructive)",
+ color: "var(--chart-2)",
},
balanco: {
label: "Balanço",
- color: "var(--warning)",
+ color: "var(--chart-3)",
},
} satisfies ChartConfig;
diff --git a/src/features/inbox/components/inbox-card.tsx b/src/features/inbox/components/inbox-card.tsx
index 5aa4f3f..f7a7b35 100644
--- a/src/features/inbox/components/inbox-card.tsx
+++ b/src/features/inbox/components/inbox-card.tsx
@@ -213,8 +213,8 @@ export const InboxCard = memo(function InboxCard({
variant="ghost"
onClick={() => onViewDetails?.(item)}
className="text-muted-foreground hover:text-foreground"
- aria-label="Ver detalhes"
- title="Ver detalhes"
+ aria-label="detalhes"
+ title="detalhes"
>
diff --git a/src/features/settings/components/delete-account-form.tsx b/src/features/settings/components/delete-account-form.tsx
index c4f7edc..9f91e27 100644
--- a/src/features/settings/components/delete-account-form.tsx
+++ b/src/features/settings/components/delete-account-form.tsx
@@ -169,7 +169,7 @@ export function DeleteAccountForm() {
>
- {isResetAction ? "Zerar sua conta?" : "Você tem certeza?"}
+ {isResetAction ? "ZERAR sua conta?" : "Você tem certeza?"}
{isResetAction
diff --git a/src/shared/components/navigation/navbar/notification-bell/notification-bell-trigger.tsx b/src/shared/components/navigation/navbar/notification-bell/notification-bell-trigger.tsx
index 83b2216..0c8c194 100644
--- a/src/shared/components/navigation/navbar/notification-bell/notification-bell-trigger.tsx
+++ b/src/shared/components/navigation/navbar/notification-bell/notification-bell-trigger.tsx
@@ -36,9 +36,6 @@ export function NotificationBellTrigger({
"group relative shadow-none transition-all duration-200",
"hover:border-black/20 hover:bg-black/10 hover:text-black focus-visible:ring-2 focus-visible:ring-black/20 dark:hover:border-white/20 dark:hover:bg-white/10 dark:hover:text-white dark:focus-visible:ring-white/20",
"data-[state=open]:bg-black/10 data-[state=open]:text-black dark:data-[state=open]:bg-white/10 dark:data-[state=open]:text-white",
- hasAnySourceItems
- ? "text-black dark:text-white"
- : "text-black/75 dark:text-white/75",
)}
>
{displayCount}
-
+
>
) : null}
diff --git a/src/shared/components/ui/card.tsx b/src/shared/components/ui/card.tsx
index 4a6a1b1..1e094d5 100644
--- a/src/shared/components/ui/card.tsx
+++ b/src/shared/components/ui/card.tsx
@@ -7,7 +7,7 @@ function Card({ className, ...props }: React.ComponentProps<"div">) {