Skip to content

Commit f190940

Browse files
committed
Fix overflow
1 parent eb0cd60 commit f190940

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/routes/(authenticated)/admin/blacklists/+page.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@
174174
{/snippet}
175175
</TextInput>
176176
</CardHeader>
177-
<CardContent>
178-
<ScrollArea class="max-h-64">
177+
<CardContent class="overflow-clip">
178+
<ScrollArea>
179179
<div class="space-y-2">
180180
{#each limit(usernameBlacklist, 10) as item (item.id)}
181181
<div class="flex items-center justify-between text-sm">
@@ -212,8 +212,8 @@
212212
{/snippet}
213213
</EmailInput>
214214
</CardHeader>
215-
<CardContent>
216-
<ScrollArea class="max-h-64">
215+
<CardContent class="overflow-clip">
216+
<ScrollArea>
217217
<div class="space-y-2">
218218
{#each limit(emailBlacklist, 10) as item (item.id)}
219219
<div class="flex items-center justify-between text-sm">

0 commit comments

Comments
 (0)