Fix left nav alignment

This commit is contained in:
Eric Bailey
2024-05-10 07:26:57 -05:00
parent 9c1cb58f17
commit fc2d84da9c
+4 -3
View File
@@ -204,7 +204,9 @@ function NavItem({count, href, icon, iconFilled, label}: NavItemProps) {
) : null}
</View>
{isDesktop && (
<Text type="title" style={[isCurrent ? s.bold : s.normal, pal.text]}>
<Text
type="title"
style={[isCurrent ? s.bold : s.normal, pal.text, {top: -1}]}>
{label}
</Text>
)}
@@ -437,8 +439,7 @@ const styles = StyleSheet.create({
alignItems: 'center',
justifyContent: 'center',
width: 28,
height: 24,
marginTop: 2,
height: 28,
zIndex: 1,
},
navItemIconWrapperTablet: {