From e79d574359b23926c048af67520a5fe328dcb10a Mon Sep 17 00:00:00 2001 From: zias Date: Mon, 15 Dec 2025 10:13:53 +0100 Subject: [PATCH] fix:overflow in location list --- src/lib/components/locations/LocationsList.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/components/locations/LocationsList.svelte b/src/lib/components/locations/LocationsList.svelte index 40577e9..23a5d4a 100644 --- a/src/lib/components/locations/LocationsList.svelte +++ b/src/lib/components/locations/LocationsList.svelte @@ -104,6 +104,8 @@ display: flex; flex-direction: column; gap: 0.75rem; + max-height: calc(100vh - 200px); + overflow-y: auto; } .empty-state {