Skip to content

Commit

Permalink
fix padding on ValidProofScreen and WrongProofScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
remicolin committed Oct 30, 2024
1 parent a9bdc05 commit 2e4489e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/screens/ValidProofScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { QrCode } from '@tamagui/lucide-icons';

const SuccessScreen: React.FC = () => {
return (
<YStack f={1} p="$3">
<YStack f={1} >
<YStack f={1} mt="$8">
<Text ml="$1" fontSize="$10" color={textBlack}><Text style={{ textDecorationLine: 'underline', textDecorationColor: bgGreen }}>Success</Text>, the proof has been verified</Text>
<XStack f={1} />
Expand Down
2 changes: 1 addition & 1 deletion app/src/screens/WrongProofScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const WrongProofScreen: React.FC = () => {
console.log('Failed conditions:', JSON.stringify(failedConditions));

return (
<YStack f={1} p="$3">
<YStack f={1} >
<YStack f={1} mt="$4" >
<Text ml="$1" fontSize={34} color={textBlack}>
<Text style={{ textDecorationLine: 'underline', textDecorationColor: bgGreen }}>Oops</Text>, the proof is not valid.
Expand Down

0 comments on commit 2e4489e

Please sign in to comment.