header button radius change
This commit is contained in:
parent
b6b3a7d422
commit
61bcdde399
@ -75,7 +75,7 @@ function Header() {
|
||||
display: { xs: 'block', md: 'none' },
|
||||
}}
|
||||
>
|
||||
{/* ... (existing code) */}
|
||||
|
||||
</Menu>
|
||||
</Box>
|
||||
|
||||
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user