Fixed NavBar color

This commit is contained in:
FlorianSpeicher
2025-05-22 14:59:06 +02:00
parent d1f038729e
commit 0919dfe02b

View File

@@ -45,7 +45,7 @@ const Search = styled('div')(({ theme }) => ({
}));
const StyledInputBase = styled(InputBase)(({ theme }) => ({
color: 'inherit',
color: 'white',
width: '100%',
'& .MuiInputBase-input': {
padding: theme.spacing(1, 1, 1, 0),
@@ -88,7 +88,7 @@ export default function NavBar() {
<AppBar sx={{bgcolor: 'green'}}>
<Container maxWidth="xl">
<Toolbar disableGutters>
<AdbIcon sx={{ display: { xs: 'none', md: 'flex' }, mr: 1 }} />
<AdbIcon sx={{ display: { xs: 'none', md: 'flex' }, mr: 1, color: 'white' }} />
<Typography
variant="h6"
noWrap
@@ -100,7 +100,7 @@ export default function NavBar() {
fontFamily: 'monospace',
fontWeight: 700,
letterSpacing: '.3rem',
color: 'inherit',
color: 'white',
textDecoration: 'none',
}}
>
@@ -109,7 +109,7 @@ export default function NavBar() {
<Search>
<SearchIconWrapper>
<SearchIcon />
<SearchIcon sx={{color: 'white'}}/>
</SearchIconWrapper>
<StyledInputBase
placeholder="Search…"