From ba11a71892ef507d9a1364259210b083de79ae92 Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sun, 22 Feb 2026 22:29:04 +0000 Subject: [PATCH] fix: aumentar opacidade dos links da topbar de /70 para /90 Co-Authored-By: Claude Sonnet 4.6 --- components/topbar/top-nav-menu.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/topbar/top-nav-menu.tsx b/components/topbar/top-nav-menu.tsx index 71f387e..5d7cf72 100644 --- a/components/topbar/top-nav-menu.tsx +++ b/components/topbar/top-nav-menu.tsx @@ -43,12 +43,12 @@ type TopNavMenuProps = { // pl-3 pr-7: compensa os 16px da seta (ml-1 + size-3) dos triggers const linkBase = "inline-flex h-9 items-center justify-center rounded-md pl-3 pr-7 py-2 text-sm font-medium transition-colors"; -const linkIdle = "text-foreground/70 hover:text-foreground hover:underline"; +const linkIdle = "text-foreground/90 hover:text-foreground hover:underline"; const linkActive = "text-primary"; // NavigationMenuTrigger override: remove backgrounds, keep underline style const triggerClass = [ - "text-foreground/70!", + "text-foreground/90!", "bg-transparent!", "hover:bg-transparent!", "hover:text-foreground!",