From 32b7f7b687dcb5af297b35c9141e22f0da56657c Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sun, 22 Feb 2026 20:39:12 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20centralizar=20conte=C3=BAdo=20da=20topb?= =?UTF-8?q?ar=20no=20max-w-8xl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Envolve logo, nav e ações num container max-w-8xl mx-auto para alinhar com a largura do conteúdo das páginas. Co-Authored-By: Claude Sonnet 4.6 --- components/topbar/app-topbar.tsx | 113 ++++++++++++++++--------------- 1 file changed, 59 insertions(+), 54 deletions(-) diff --git a/components/topbar/app-topbar.tsx b/components/topbar/app-topbar.tsx index 054196c..54c0073 100644 --- a/components/topbar/app-topbar.tsx +++ b/components/topbar/app-topbar.tsx @@ -29,63 +29,68 @@ export function AppTopbar({ notificationsSnapshot, }: AppTopbarProps) { return ( -
- {/* Logo */} - - OpenMonetis - OpenMonetis - +
+
+ {/* Logo */} + + OpenMonetis + OpenMonetis + - {/* Navigation */} - + {/* Navigation */} + - {/* Right-side actions — CSS vars overridden so icons render light on primary bg */} -
- - - - - - - + {/* Right-side actions — CSS vars overridden so icons render light on primary bg */} +
+ + + + + + + +
+ + {/* User avatar — outside the var-override div so dropdown stays normal */} +
- - {/* User avatar — outside the var-override div so dropdown stays normal */} -
); }