diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 011748d..dc77612 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -75,7 +75,7 @@ function Header() { display: { xs: 'block', md: 'none' }, }} > - {/* ... (existing code) */} + @@ -86,6 +86,7 @@ function Header() { sx={{ mx: 2, color: 'white', + borderRadius:0, borderBottom: location.pathname === '/' ? '2px solid red' : 'none', }} component={Link} @@ -99,6 +100,7 @@ function Header() { sx={{ mx: 2, color: 'white', + borderRadius:0, borderBottom: location.pathname === '/projects' ? '2px solid red' : 'none', }} component={Link} @@ -112,6 +114,7 @@ function Header() { sx={{ mx: 2, color: 'white', + borderRadius:0, borderBottom: location.pathname === '/manage-users' ? '2px solid red' : 'none', }} component={Link} @@ -126,6 +129,7 @@ function Header() { mx: 2, color: 'white', borderBottom: location.pathname === '/intranet-users' ? '2px solid red' : 'none', + borderRadius:0 }} component={Link} to="/intranet-users"