Skip to content

Commit 98f56d3

Browse files
fix: APP-865 fix send confirmation modal bug (#2788)
1 parent bf5b6a0 commit 98f56d3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

web-components/src/components/modal/TxModal.CardItemValue.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,19 @@ export const CardItemValue = ({
3333
sx={{
3434
display: 'flex',
3535
alignItems: 'flex-end',
36+
flexWrap: 'wrap',
37+
minWidth: 0,
38+
maxWidth: '100%',
39+
overflowWrap: 'anywhere',
3640
}}
3741
>
3842
{value.icon && value.icon}
3943
{value.url ? (
4044
<LinkComponent
4145
sx={{
4246
color: 'secondary.main',
47+
minWidth: 0,
48+
overflowWrap: 'anywhere',
4349
}}
4450
href={value.url}
4551
target={value.url.startsWith('/') ? '_self' : '_blank'}

0 commit comments

Comments
 (0)