Skip to content

Commit

Permalink
fix: fix profile screen crop
Browse files Browse the repository at this point in the history
  • Loading branch information
taronaleksanian committed Sep 7, 2024
1 parent 91f0965 commit e54550c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions packages/app/modules/user/screens/SettingsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,12 @@ export function SettingsScreen() {
gap={8}
width="fit-content"
maw="100%"
paddingVertical={20}
paddingHorizontal={8}
style={{
paddingTop: 20,
paddingBottom: 100,
paddingLeft: 20,
paddingRight: 20,
}}
marginHorizontal="auto"
marginVertical={40}
>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/modules/user/widgets/ProfileContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export function ProfileContainer({ id = null }) {
styles.mainContainer,
Platform.OS == 'web'
? { minHeight: '100vh' }
: { minHeight: '100%', paddingBottom: 40 },
: { minHeight: '100%', paddingBottom: 100 },
]}
>
<Header
Expand Down

0 comments on commit e54550c

Please sign in to comment.