Skip to content

Commit 7fdbbba

Browse files
committed
Fixed typo in styling
1 parent 654a74b commit 7fdbbba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/client/src/components/Header.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export function AdminHeader(props) { // This one if user has the ADMIN role
88

99
return (
1010
<AppBar position="static" id="header" className={admstyles.header} elevation={1}>
11-
<Toolbar style={{"minWidth": "100", "dipslay": "flex", "justifyContent": "space-between"}}>
11+
<Toolbar style={{"minWidth": "100", "display": "flex", "justifyContent": "space-between"}}>
1212
<Button className={styles.header_link} component={RouterLink} to="/">
1313
<Typography className={styles.header_logo} variant="h6">PAWS Data Pipeline</Typography>
1414
</Button>
@@ -30,7 +30,7 @@ export function LoginHeader(props) { // This one for login page
3030

3131
return (
3232
<AppBar position="static" id="header" className={styles.header} elevation={1}>
33-
<Toolbar style={{"minWidth": "100", "dipslay": "flex", "justifyContent": "space-between"}}>
33+
<Toolbar style={{"minWidth": "100", "display": "flex", "justifyContent": "space-between"}}>
3434
<Typography className={styles.header_logo} variant="h6">PAWS Data Pipeline</Typography>
3535
<div style={{"display": "flex", "justifyContent": "space-between", "margin": "16px 6px 16px 16px"}}>
3636
<Button className={styles.header_link} component={RouterLink} to="/about">About us</Button>
@@ -46,7 +46,7 @@ export default function Header(props) { // This one if user only has USER role
4646

4747
return (
4848
<AppBar position="static" id="header" className={styles.header} elevation={1}>
49-
<Toolbar style={{"minWidth": "100", "dipslay": "flex", "justifyContent": "space-between"}}>
49+
<Toolbar style={{"minWidth": "100", "display": "flex", "justifyContent": "space-between"}}>
5050
<Typography className={styles.header_logo} variant="h6">PAWS Data Pipeline</Typography>
5151
<div style={{"display": "flex", "justifyContent": "space-between", "margin": "16px 6px 16px 16px"}}>
5252
<Button className={styles.header_link} component={RouterLink} to="/360view/search">360

0 commit comments

Comments
 (0)