Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ui/src/components/grid/GridFiltersPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
/>
</div>

<div class="space-y-1 max-h-56 overflow-y-auto pr-1">
<div class={cn('space-y-1 pr-1', mobile ? '' : 'max-h-56 overflow-y-auto')}>
{#if $tagFilterEntries.length === 0}
<div class="px-2 py-3 text-xs text-muted-foreground">No tags found.</div>
{:else}
Expand Down Expand Up @@ -250,7 +250,7 @@
/>
</div>

<div class="space-y-1 max-h-64 overflow-y-auto pr-1">
<div class={cn('space-y-1 pr-1', mobile ? '' : 'max-h-64 overflow-y-auto')}>
{#if $trackerFilterEntries.length === 0}
<div class="px-2 py-3 text-xs text-muted-foreground">No trackers found.</div>
{:else}
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/grid/GridView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@

{#if mobileFiltersOpen}
<div
class="fixed inset-x-0 bottom-0 z-50 max-h-[82vh] rounded-t-3xl border-t border-border bg-card shadow-2xl lg:hidden"
class="fixed inset-x-0 bottom-0 z-50 flex max-h-[82vh] flex-col rounded-t-3xl border-t border-border bg-card shadow-2xl lg:hidden"
>
<div class="mx-auto mt-2 h-1.5 w-12 rounded-full bg-muted-foreground/30"></div>
<div class="flex items-center justify-between gap-3 px-4 py-3 border-b border-border/70">
Expand Down Expand Up @@ -171,7 +171,7 @@
</div>
</div>

<div class="overflow-y-auto px-4 py-3 pb-6">
<div class="flex-1 min-h-0 overflow-y-auto overscroll-y-contain px-4 py-3 pb-6">
<GridFiltersPanel mobile={true} showHeader={false} />
</div>
</div>
Expand Down
Loading
Loading