Skip to content

Commit

Permalink
Fix mobile UX, issue actualbudget#2079
Browse files Browse the repository at this point in the history
  • Loading branch information
CampaniaGuy authored and joel-jeremy committed Mar 6, 2024
1 parent 4570459 commit 1051724
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions packages/desktop-client/src/components/mobile/MobileNavTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,29 @@ export function MobileNavTabs() {
...(!isNarrowWidth && { display: 'none' }),
}}
>
<View
style={{
flexDirection: 'row',
flexWrap: 'wrap',
height: totalHeight,
width: '100%',
}}
>
{[navTabs, bufferTabs]}
<View>
<div
style={{
background: theme.mobileNavItem,
borderRadius: 4,
width: 50,
marginTop: 5,
marginBottom: 5,
padding: 2,
alignSelf: 'center',
textAlign: 'center',
}}
/>
<View
style={{
flexDirection: 'row',
flexWrap: 'wrap',
height: totalHeight,
width: '100%',
}}
>
{[navTabs, bufferTabs]}
</View>
</View>
</animated.div>
);
Expand Down

0 comments on commit 1051724

Please sign in to comment.