fix: vertically center-align navbar items (#5664)
This commit is contained in:
parent
2db4b1da3d
commit
7738a6b9e0
@ -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 = () => {
|
|||||||
/>
|
/>
|
||||||
</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>
|
||||||
)}
|
)}
|
||||||
|
Loading…
Reference in New Issue
Block a user