File tree 1 file changed +3
-4
lines changed
ui/pages/bridge/transaction-details
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 7
7
AlignItems ,
8
8
TextAlign ,
9
9
TextVariant ,
10
+ BlockSize ,
10
11
} from '../../../helpers/constants/design-system' ;
11
12
12
13
type TransactionDetailRowProps = {
@@ -20,18 +21,16 @@ export default function TransactionDetailRow({
20
21
} : TransactionDetailRowProps ) {
21
22
return (
22
23
< Box display = { Display . Flex } justifyContent = { JustifyContent . spaceBetween } >
23
- < Box style = { { maxWidth : '40%' } } paddingRight = { 1 } >
24
+ < Box width = { BlockSize . OneFourth } paddingRight = { 1 } >
24
25
< Text variant = { TextVariant . bodyMd } > { title } </ Text >
25
26
</ Box >
26
27
< Box
27
28
display = { Display . Flex }
29
+ width = { BlockSize . ThreeFourths }
28
30
flexDirection = { FlexDirection . Column }
29
31
alignItems = { AlignItems . flexEnd }
30
32
textAlign = { TextAlign . Right }
31
33
paddingLeft = { 1 }
32
- style = { {
33
- maxWidth : '60%' ,
34
- } }
35
34
>
36
35
< Text variant = { TextVariant . bodyMd } > { value } </ Text >
37
36
</ Box >
You can’t perform that action at this time.
0 commit comments