Skip to content

Commit d5c084c

Browse files
authored
fix: add min width to descriptions (#1775)
add min width
1 parent aa3e8b5 commit d5c084c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/packages/data-portal/app/components/Dataset/DatasetOverview.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ export function DatasetOverview() {
2929
return (
3030
<>
3131
<div className="flex gap-sds-xxl items-start">
32-
<div>
32+
<div className="min-w-[calc(100%-232px)]">
33+
{/* 232px is the width of aside plus gap */}
3334
<PageHeaderSubtitle>{t('datasetOverview')}</PageHeaderSubtitle>
3435
<CollapsibleDescription
3536
className="text-sds-body-s-400-wide leading-sds-body-s mt-sds-s"

0 commit comments

Comments
 (0)