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

This commit is contained in:
Zach Pomerantz 2022-12-12 14:50:21 -05:00 committed by GitHub
parent 2db4b1da3d
commit 7738a6b9e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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>
)}