Skip to content

Commit 364cb67

Browse files
committed
chore: fix mobile alignment issue
1 parent 70ce83a commit 364cb67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/tx/details/TxInfo.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,11 +529,11 @@ const TxInfo = ({ data, isLoading, socketStatus }: Props) => {
529529
</DetailsInfoItem.Label>
530530
<Box display="flex" flexDir="column" gap={ 2 }>
531531
{ txTags.map((tag: [string, string]) => (
532-
<Box key={ tag[0] } display="flex" flexDir="row">
533-
<Box width="120px">
532+
<Box key={ tag[0] } display="flex">
533+
<Box minWidth="120px" flexShrink={ 0 }>
534534
<WvmTxTag tag={ tag[0] }/>
535535
</Box>
536-
<Text textAlign="left" wordBreak="break-word">{ tag[1] }</Text>
536+
<Text flexGrow={ 1 } wordBreak="break-word">{ tag[1] }</Text>
537537
</Box>
538538
)) }
539539
</Box>

0 commit comments

Comments
 (0)