From 61bcdde39901ee9cc41203aea3591d10ce993e10 Mon Sep 17 00:00:00 2001 From: Sonika Date: Wed, 27 Dec 2023 13:25:55 +0530 Subject: [PATCH] header button radius change --- src/components/Header.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"