From bb291f641e5ca7ec994ad2a7e6bf1ebe16a5a352 Mon Sep 17 00:00:00 2001 From: chrisdicaprio Date: Tue, 24 Mar 2026 15:57:28 +1300 Subject: [PATCH] shorter nav bar with light blue line --- src/components/common/NavBar.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/common/NavBar.tsx b/src/components/common/NavBar.tsx index 427428da..104c6cad 100644 --- a/src/components/common/NavBar.tsx +++ b/src/components/common/NavBar.tsx @@ -26,7 +26,8 @@ import { GA_ID, GA_DEBUG_MODE } from "../../utils/environmentVariables"; const StyledAppBar = styled(AppBar)(({ theme }) => ({ backgroundColor: theme.palette.navbar.main, - height: 102, + height: 70, + borderBottom: `5px solid ${theme.palette.navbar.accent}`, alignItems: "center", justifyContent: "space-around", "&& .Mui-selected": { @@ -175,7 +176,7 @@ const FluidMenuItem: React.FC = ({ page }: FluidMenuProps) => { if (page.path) { return ( - + {page.name} @@ -190,7 +191,7 @@ const FluidMenuItem: React.FC = ({ page }: FluidMenuProps) => { component={Button} selected={page.submenu && page.submenu.filter((page) => page.path === location.pathname).length > 0} > - + {page.name}