Skip to content

Commit 1afcc27

Browse files
committed
Fixes the table height so all rows can be scrolled to
1 parent 0c839e8 commit 1afcc27

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ export default function Page() {
262262
<div className={cn("grid h-full grid-rows-1")}>
263263
{hasItems ? (
264264
<div className="flex min-w-0 max-w-full flex-col">
265-
<div className="max-h-full overflow-hidden">
266-
<div className="flex items-center justify-between gap-1.5 p-2">
265+
<div className="flex h-full flex-col overflow-hidden">
266+
<div className="flex shrink-0 items-center justify-between gap-1.5 p-2">
267267
<div className="flex flex-1 items-center gap-1.5">
268268
<SearchInput placeholder="Search tasks…" autoFocus resetParams={["page"]} />
269269
<TaskTypeFilter />
@@ -287,7 +287,7 @@ export default function Page() {
287287
/>
288288
</div>
289289
</div>
290-
<Table containerClassName="max-h-full">
290+
<Table containerClassName="min-h-0 flex-1">
291291
<TableHeader>
292292
<TableRow>
293293
<TableHeaderCell>ID</TableHeaderCell>

0 commit comments

Comments
 (0)