Commit 7738a6b9 authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: vertically center-align navbar items (#5664)

parent 2db4b1da
...@@ -99,7 +99,7 @@ const Navbar = () => { ...@@ -99,7 +99,7 @@ const Navbar = () => {
return ( return (
<> <>
<Nav> <Nav>
<Box display="flex" height="full" flexWrap="nowrap" alignItems="stretch"> <Box display="flex" height="full" flexWrap="nowrap" alignItems="center">
<Box className={styles.leftSideContainer}> <Box className={styles.leftSideContainer}>
<Box className={styles.logoContainer}> <Box className={styles.logoContainer}>
<UniIcon <UniIcon
...@@ -112,7 +112,7 @@ const Navbar = () => { ...@@ -112,7 +112,7 @@ const Navbar = () => {
/> />
</Box> </Box>
{!isNftPage && ( {!isNftPage && (
<Box display={{ sm: 'flex', lg: 'none' }}> <Box display={{ sm: 'flex', lg: 'none' }} alignSelf="center">
<ChainSelector leftAlign={true} /> <ChainSelector leftAlign={true} />
</Box> </Box>
)} )}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment