Skip to content

Commit

Permalink
Fix: Some display issues (#2219)
Browse files Browse the repository at this point in the history
* Update LeftNav.tsx

* Update RightNav.tsx
  • Loading branch information
Hima-Zinn committed Dec 18, 2023
1 parent 9f82441 commit b942da1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/view/shell/desktop/LeftNav.tsx
Expand Up @@ -409,7 +409,7 @@ export function DesktopLeftNav() {
style={pal.text}
/>
}
label="Profile"
label={_(msg`Profile`)}
/>
<NavItem
href="/settings"
Expand Down Expand Up @@ -515,7 +515,6 @@ const styles = StyleSheet.create({
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
width: 140,
borderRadius: 24,
paddingTop: 10,
paddingBottom: 12, // visually aligns the text vertically inside the button
Expand Down
2 changes: 1 addition & 1 deletion src/view/shell/desktop/RightNav.tsx
Expand Up @@ -52,7 +52,7 @@ export function DesktopRightNav() {
</Text>
</View>
) : undefined}
<View style={[s.flexRow]}>
<View style={[{flexWrap: 'wrap'}, s.flexRow]}>
{hasSession && (
<>
<TextLink
Expand Down

0 comments on commit b942da1

Please sign in to comment.