Skip to content

Commit 1522017

Browse files
authored
Merge pull request #414 from getAlby/fix/description-cutoff
fix: description getting cutoff in description screen
2 parents ac5bc34 + 260aa47 commit 1522017

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pages/Transaction.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ export function Transaction() {
114114
return (
115115
<>
116116
<Screen title="Transaction" />
117-
<View className="flex-1 p-6 pt-12">
117+
<View className="flex-1 pt-2">
118118
<ScrollView showsVerticalScrollIndicator={false}>
119-
<View className="flex gap-10">
120-
<View className="flex gap-8 justify-center items-center">
119+
<View className="flex-1 p-6 pt-10 gap-12">
120+
<View className="flex gap-10 justify-center items-center">
121121
<View className="flex items-center gap-8">
122122
<View
123123
className={cn(
@@ -320,12 +320,12 @@ function TransactionDetailRow(props: {
320320
});
321321
}}
322322
>
323-
<Text className={cn("font-medium2", props.className)}>
323+
<Text className={cn("font-medium2 flex-shrink", props.className)}>
324324
{props.content}
325325
</Text>
326326
</TouchableOpacity>
327327
) : (
328-
<Text className={cn("font-medium2", props.className)}>
328+
<Text className={cn("font-medium2 flex-shrink", props.className)}>
329329
{props.content}
330330
</Text>
331331
)}

0 commit comments

Comments
 (0)