We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf5b6a0 commit 98f56d3Copy full SHA for 98f56d3
web-components/src/components/modal/TxModal.CardItemValue.tsx
@@ -33,13 +33,19 @@ export const CardItemValue = ({
33
sx={{
34
display: 'flex',
35
alignItems: 'flex-end',
36
+ flexWrap: 'wrap',
37
+ minWidth: 0,
38
+ maxWidth: '100%',
39
+ overflowWrap: 'anywhere',
40
}}
41
>
42
{value.icon && value.icon}
43
{value.url ? (
44
<LinkComponent
45
46
color: 'secondary.main',
47
48
49
50
href={value.url}
51
target={value.url.startsWith('/') ? '_self' : '_blank'}
0 commit comments