Skip to content

Commit

Permalink
chore: unify padding bottom cross auth screen
Browse files Browse the repository at this point in the history
  • Loading branch information
tanlethanh committed Jun 11, 2024
1 parent 9052751 commit 3d8c876
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const CreatePasscodeScreen: FC = () => {
const title = confirmation ? 'Confirm your passcode' : 'Create passcode';
const style = {
paddingTop: insets.top,
paddingBottom: insets.bottom || 20,
paddingBottom: insets.bottom || 24,
};

const handleInitFail = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const InvitationScreen: FC = () => {

const containerStyle: ViewStyle = {
paddingTop: insets.top,
paddingBottom: Math.max(insets.bottom, 32),
paddingBottom: Math.max(insets.bottom, 24),
paddingHorizontal: 38,
};

Expand Down
1 change: 1 addition & 0 deletions apps/wallet/src/screens/Authentication/Recovery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ const styles = StyleSheet.create({
justifyContent: 'space-around',
paddingHorizontal: 36,
gap: 40,
paddingBottom: 24,
},
logo: {
marginTop: 48,
Expand Down

0 comments on commit 3d8c876

Please sign in to comment.