From 87f919b9f569064a91524e9fb1607b9651763cac Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sun, 22 Feb 2026 22:32:11 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20reverter=20espa=C3=A7amento=20dos=20link?= =?UTF-8?q?s=20para=20px-3=20original?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- components/topbar/top-nav-menu.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/topbar/top-nav-menu.tsx b/components/topbar/top-nav-menu.tsx index 5d7cf72..9420158 100644 --- a/components/topbar/top-nav-menu.tsx +++ b/components/topbar/top-nav-menu.tsx @@ -40,15 +40,14 @@ type TopNavMenuProps = { preLancamentosCount?: number; }; -// 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/90 hover:text-foreground hover:underline"; + "inline-flex h-9 items-center justify-center rounded-md px-3 py-2 text-sm font-medium transition-colors"; +const linkIdle = "text-foreground hover:text-foreground hover:underline"; const linkActive = "text-primary"; // NavigationMenuTrigger override: remove backgrounds, keep underline style const triggerClass = [ - "text-foreground/90!", + "text-foreground!", "bg-transparent!", "hover:bg-transparent!", "hover:text-foreground!",