Skip to content

Commit

Permalink
problem: scrollbar covers problem buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
bob2402 committed Sep 29, 2024
1 parent 4b2a0a4 commit 85fb436
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/layouts/MailList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
import Filters from '../components/Filters.svelte';
</script>

<div class="flex flex-col gap-2 p-2">
<div class="gap-2"><Filters /></div>
<form>
<div class="flex flex-col gap-2">
<div class="gap-2 px-4 pt-2"><Filters /></div>
<form class="px-4">
<div class="relative">
<Search class="absolute left-2 top-[50%] h-4 w-4 translate-y-[-50%] text-muted-foreground" />
<Input placeholder="Search" class="pl-8" />
</div>
</form>
<ScrollArea class="h-[calc(100vh-150px)]">
<ScrollArea class="h-[calc(100vh-154px)] px-4">
<div class="flex flex-col items-center gap-2">
{#each items as item}
<button
Expand Down

0 comments on commit 85fb436

Please sign in to comment.