fix: specify grid items in header's layout

main
Josue 4 years ago committed by Tsu-ba-me
parent c2e47f40ab
commit 1b1f25976e
  1. 6
      striker-ui/components/organisms/Header.tsx

@ -26,13 +26,13 @@ const Header = (): JSX.Element => {
return ( return (
<AppBar position="static" className={classes.appBar}> <AppBar position="static" className={classes.appBar}>
<Grid container alignItems="center" justify="space-between"> <Grid container alignItems="center" justify="space-between">
<Grid> <Grid item>
<Image src="/pngs/logo.png" width="160" height="40" /> <Image src="/pngs/logo.png" width="160" height="40" />
</Grid> </Grid>
<Grid> <Grid item>
<input className={classes.input} list="search-suggestions" /> <input className={classes.input} list="search-suggestions" />
</Grid> </Grid>
<Grid> <Grid item>
{ICONS.map( {ICONS.map(
(icon): JSX.Element => ( (icon): JSX.Element => (
<Image <Image

Loading…
Cancel
Save