Skip to content

Commit b8e2d0c

Browse files
sourabpramanikTorstenDittmann
authored andcommitted
fix: table overflow in mobile view
1 parent 4cb2358 commit b8e2d0c

File tree

1 file changed

+3
-3
lines changed
  • src/routes/console/project-[project]/auth/user-[user]/sessions

1 file changed

+3
-3
lines changed

src/routes/console/project-[project]/auth/user-[user]/sessions/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { Pill } from '$lib/elements';
44
import { Button } from '$lib/elements/forms';
55
import {
6-
Table,
6+
TableScroll,
77
TableBody,
88
TableCell,
99
TableCellHead,
@@ -36,7 +36,7 @@
3636
{/if}
3737
</ContainerHeader>
3838
{#if data.sessions.total}
39-
<Table>
39+
<TableScroll>
4040
<TableHeader>
4141
<TableCellHead width={140}>Browser and device</TableCellHead>
4242
<TableCellHead width={140}>Session</TableCellHead>
@@ -85,7 +85,7 @@
8585
</TableRow>
8686
{/each}
8787
</TableBody>
88-
</Table>
88+
</TableScroll>
8989
{:else}
9090
<EmptySearch>
9191
<div class="u-flex u-flex-vertical u-cross-center u-gap-24">

0 commit comments

Comments
 (0)