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 = () => {
return (
<>
<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.logoContainer}>
<UniIcon
......@@ -112,7 +112,7 @@ const Navbar = () => {
/>
</Box>
{!isNftPage && (
<Box display={{ sm: 'flex', lg: 'none' }}>
<Box display={{ sm: 'flex', lg: 'none' }} alignSelf="center">
<ChainSelector leftAlign={true} />
</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