Skip to content

Commit

Permalink
Merge pull request #31517 from ZhenjaHorbach/extra-bottom-padding-on-…
Browse files Browse the repository at this point in the history
…the-header-in-the-sign-in-modal
  • Loading branch information
francoisl authored Nov 20, 2023
2 parents 84811dc + 9b3768a commit 6b79e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/signin/SignInPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ function SignInPage({credentials, account, isInModal, activeClients, preferredLo
return (
// Bottom SafeAreaView is removed so that login screen svg displays correctly on mobile.
// The SVG should flow under the Home Indicator on iOS.
<View style={[styles.signInPage, StyleUtils.getSafeAreaPadding({...safeAreaInsets, bottom: 0}, 1)]}>
<View style={[styles.signInPage, StyleUtils.getSafeAreaPadding({...safeAreaInsets, bottom: 0, top: isInModal ? 0 : safeAreaInsets.top}, 1)]}>
<SignInPageLayout
welcomeHeader={welcomeHeader}
welcomeText={welcomeText}
Expand Down

0 comments on commit 6b79e4a

Please sign in to comment.