Add line break to card's secondary text

This commit is contained in:
viown
2025-11-06 06:08:00 +03:00
parent 21d7dd86ea
commit a1d8bec051

View File

@@ -94,7 +94,13 @@ const BaseCard = ({
{title}
</Typography>
{text && (
<Typography variant='body2' color='text.secondary'>
<Typography
variant='body2'
color='text.secondary'
sx={{
lineBreak: 'anywhere'
}}
>
{text}
</Typography>
)}