diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/NavBar.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx index c8cb136..a4b46c8 100644 --- a/src/components/NavBar.tsx +++ b/src/components/NavBar.tsx @@ -35,13 +35,13 @@ function NavBar({ mode }) { > Madison and Michael's Wedding </Typography> - <Stack spacing={2} direction="row" sx={{ marginLeft: 'auto' }}> + <Stack direction="row" sx={{ marginLeft: 'auto' }}> {pages.map((page) => ( - <Button component={Link} to={page.to} key={page.name} variant="contained"> + <Button color="inherit" component={Link} to={page.to} key={page.name}> {page.name} </Button> ))} - <IconButton variant="contained" color="inherit" onClick={switchColorMode}> + <IconButton color="inherit" onClick={switchColorMode}> {theme.palette.mode === 'dark' ? <DarkModeIcon /> : <LightModeIcon />} </IconButton> </Stack> |