Skip to content

Commit

Permalink
fix: height
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan committed Feb 27, 2024
1 parent 65899ca commit ecfb2a8
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ export function CredentialNotificationScreen({
}: CredentialNotificationScreenProps) {
const { bottom } = useSafeAreaInsets()
return (
<ScrollView bg="$grey-200" safeAreaBottom={bottom}>
<YStack g="3xl" jc="space-between" pad="lg" py="$6">
<ScrollView
bg="$grey-200"
contentContainerStyle={{
minHeight: '100%',
}}
safeAreaBottom={bottom}
>
<YStack g="3xl" jc="space-between" height="100%" pad="lg" py="$6">
<YStack g="2xl">
<Heading variant="h2" ta="center" px="$4">
You have received a credential
Expand Down

0 comments on commit ecfb2a8

Please sign in to comment.