Skip to content

Commit 1f5e181

Browse files
committed
fix AppBar color on small screen
1 parent 17da968 commit 1f5e181

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

ui/src/components/Header.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function Header() {
7171
sx={{ mr: 2, display: { xs: "none", md: "flex" } }}
7272
>
7373
<Link component={ReactLink} underline="none" to="/">
74-
CodePod {!window.codepodio && "(Local)"}
74+
CodePod
7575
</Link>
7676
</Typography>
7777

@@ -82,7 +82,7 @@ export function Header() {
8282
aria-controls="menu-appbar"
8383
aria-haspopup="true"
8484
onClick={handleOpenNavMenu}
85-
color="inherit"
85+
color="primary"
8686
>
8787
<MenuIcon />
8888
</IconButton>
@@ -131,9 +131,12 @@ export function Header() {
131131
variant="h6"
132132
noWrap
133133
component="div"
134+
color="primary"
134135
sx={{ flexGrow: 1, display: { xs: "flex", md: "none" } }}
135136
>
136-
CodePod
137+
<Link component={ReactLink} underline="none" to="/">
138+
CodePod
139+
</Link>
137140
</Typography>
138141

139142
{/* The navigation on desktop */}

0 commit comments

Comments
 (0)