File tree 1 file changed +11
-6
lines changed
ui/pages/bridge/transaction-details
1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,24 @@ export default function TransactionDetailRow({
21
21
} : TransactionDetailRowProps ) {
22
22
return (
23
23
< Box display = { Display . Flex } justifyContent = { JustifyContent . spaceBetween } >
24
- < Box width = { BlockSize . OneFourth } paddingRight = { 1 } >
25
- < Text variant = { TextVariant . bodyMd } > { title } </ Text >
26
- </ Box >
27
- < Box
24
+ < Text
25
+ width = { BlockSize . OneFourth }
26
+ paddingRight = { 1 }
27
+ variant = { TextVariant . bodyMd }
28
+ >
29
+ { title }
30
+ </ Text >
31
+ < Text
28
32
display = { Display . Flex }
29
33
width = { BlockSize . ThreeFourths }
30
34
flexDirection = { FlexDirection . Column }
31
35
alignItems = { AlignItems . flexEnd }
32
36
textAlign = { TextAlign . Right }
33
37
paddingLeft = { 1 }
38
+ variant = { TextVariant . bodyMd }
34
39
>
35
- < Text variant = { TextVariant . bodyMd } > { value } </ Text >
36
- </ Box >
40
+ { value }
41
+ </ Text >
37
42
</ Box >
38
43
) ;
39
44
}
You can’t perform that action at this time.
0 commit comments