Skip to content

Commit e9f9d01

Browse files
authored
Merge pull request #2079 from RoboSats/fix-navbar-color
Fix navbar color
2 parents 70cd280 + d3832a0 commit e9f9d01

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/basic/NavBar/AppBar/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ const AppBar = ({ changePage }: AppBarProps): React.JSX.Element => {
7171

7272
return (
7373
<Box sx={{ flexGrow: 1 }}>
74-
<Bar position='fixed' sx={{ top: 'auto', bottom: 0 }}>
74+
<Bar
75+
position='fixed'
76+
sx={{ top: 'auto', bottom: 0 }}
77+
color={theme.palette.mode === 'dark' ? 'default' : 'white'}
78+
>
7579
<Toolbar style={{ display: 'flex', justifyContent: 'space-between', flexGrow: 1 }}>
7680
<Button
7781
size='large'

0 commit comments

Comments
 (0)