fix(ui): extension command text overflow (#3785)
Co-authored-by: Alex Rouse <alex.rouse@block.xyz>
This commit is contained in:
@@ -73,7 +73,7 @@ export default function ExtensionItem({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Card
|
<Card
|
||||||
className="transition-all duration-200 hover:shadow-default hover:cursor-pointer min-h-[120px]"
|
className="transition-all duration-200 hover:shadow-default hover:cursor-pointer min-h-[120px] overflow-hidden"
|
||||||
onClick={() => handleToggle(extension)}
|
onClick={() => handleToggle(extension)}
|
||||||
>
|
>
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
@@ -98,7 +98,9 @@ export default function ExtensionItem({
|
|||||||
</div>
|
</div>
|
||||||
</CardAction>
|
</CardAction>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="px-4 text-sm text-text-muted">{renderSubtitle()}</CardContent>
|
<CardContent className="px-4 text-sm text-text-muted overflow-hidden break-words">
|
||||||
|
{renderSubtitle()}
|
||||||
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user