Skip to content
This repository was archived by the owner on Sep 13, 2023. It is now read-only.

Commit 8cc2a55

Browse files
committed
Improve header styles
1 parent 74d4e89 commit 8cc2a55

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/components/header.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface HeaderProps {
1616
const useStyles = makeStyles((theme: Theme) => createStyles({
1717
root: {
1818
flexGrow: 1,
19-
margin: '0px',
19+
margin: 'auto',
2020
pointerEvents: 'auto',
2121
minHeight: '80px',
2222
[theme.breakpoints.up('md')]: {
@@ -43,6 +43,7 @@ const useStyles = makeStyles((theme: Theme) => createStyles({
4343
},
4444
logo: {
4545
color: '#EDF6F9ff',
46+
filter: 'invert()',
4647
height: '50px',
4748
margin: '0 16px',
4849
pointerEvents: 'none',
@@ -71,7 +72,7 @@ const useStyles = makeStyles((theme: Theme) => createStyles({
7172
},
7273
inputRoot: {
7374
width: '100%',
74-
height: '40px'
75+
height: '40px',
7576
},
7677
inputInput: {
7778
padding: theme.spacing(2, 1, 2, 0),
@@ -103,7 +104,7 @@ const useStyles = makeStyles((theme: Theme) => createStyles({
103104
boxShadow: '1px 2px 5px 2px rgba(9,9,9,0.18)',
104105
},
105106
'&:hover': {
106-
}
107+
},
107108
},
108109
}));
109110

0 commit comments

Comments
 (0)