Skip to content

Commit

Permalink
[C-3880] Add bottom padding to the safe area on the sign in screen (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Shanks authored Feb 22, 2024
1 parent 3e7f71e commit 58c7e47
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ const AnimatedFlex = Animated.createAnimatedComponent(Flex)

const CreateAccountLink = (props: TextProps) => {
const { onPress } = props
const { spacing } = useTheme()

return (
<AnimatedFlex
alignItems='center'
Expand All @@ -49,7 +51,7 @@ const CreateAccountLink = (props: TextProps) => {
entering={FadeIn}
exiting={FadeOut}
>
<SafeAreaView>
<SafeAreaView style={{ paddingBottom: spacing['3xl'] }}>
<Text
variant='title'
strength='weak'
Expand Down

0 comments on commit 58c7e47

Please sign in to comment.