From 0e5f7e164233952dccfe884da61a6ec310f02cec Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 13 Dec 2025 23:12:30 -0800 Subject: [PATCH] fix modal content overflow pushing footer out of view --- src/lib/components/collection/AddToCollectionModal.svelte | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/components/collection/AddToCollectionModal.svelte b/src/lib/components/collection/AddToCollectionModal.svelte index 6fdf8963..c7f3dd1e 100644 --- a/src/lib/components/collection/AddToCollectionModal.svelte +++ b/src/lib/components/collection/AddToCollectionModal.svelte @@ -481,8 +481,12 @@ .modal-content { display: flex; flex-direction: column; - height: 100%; + flex: 1; + min-height: 0; + overflow: hidden; gap: $unit-2x; + padding: $unit-2x; + padding-top: 0; } .search-bar {