Bug fix preview cards could overflow
This commit is contained in:
parent
ebd3f75804
commit
a8960d67ed
|
@ -204,7 +204,7 @@ export const PreviewCard = ({
|
||||||
)}
|
)}
|
||||||
{subtitle && <Markdown text={subtitle} className="leading-none break-words" />}
|
{subtitle && <Markdown text={subtitle} className="leading-none break-words" />}
|
||||||
</div>
|
</div>
|
||||||
{description && <Markdown text={description} className="break-words" />}
|
{description && <Markdown text={description} className="break-words overflow-hidden" />}
|
||||||
{bottomChips && bottomChips.length > 0 && (
|
{bottomChips && bottomChips.length > 0 && (
|
||||||
<div
|
<div
|
||||||
className="grid grid-flow-col place-content-start gap-1 overflow-x-scroll
|
className="grid grid-flow-col place-content-start gap-1 overflow-x-scroll
|
||||||
|
|
Loading…
Reference in New Issue