diff --git a/src/lib/components/FindCard.svelte b/src/lib/components/FindCard.svelte
index 211246b..b2365f0 100644
--- a/src/lib/components/FindCard.svelte
+++ b/src/lib/components/FindCard.svelte
@@ -161,16 +161,8 @@
diff --git a/src/lib/components/Map.svelte b/src/lib/components/Map.svelte
index 3861d58..eacef28 100644
--- a/src/lib/components/Map.svelte
+++ b/src/lib/components/Map.svelte
@@ -9,7 +9,6 @@
locationActions,
isWatching
} from '$lib/stores/location';
- import LocationButton from './LocationButton.svelte';
import { Skeleton } from '$lib/components/skeleton';
interface Find {
@@ -39,7 +38,6 @@
center?: [number, number];
zoom?: number;
class?: string;
- showLocationButton?: boolean;
autoCenter?: boolean;
finds?: Find[];
onFindClick?: (find: Find) => void;
@@ -67,7 +65,6 @@
center,
zoom,
class: className = '',
- showLocationButton = true,
autoCenter = true,
finds = [],
onFindClick
@@ -179,12 +176,6 @@
{/each}
-
- {#if showLocationButton}
-
-
-
- {/if}
@@ -219,17 +210,9 @@
.map-container :global(.maplibregl-map) {
margin: 0 auto;
- box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
- border-radius: 12px;
overflow: hidden;
}
- .location-controls {
- position: absolute;
- top: 12px;
- right: 12px;
- }
-
/* Location marker styles */
:global(.location-marker) {
width: 24px;
diff --git a/src/lib/components/Modal.svelte b/src/lib/components/Modal.svelte
index 8caafbe..ff1b3ad 100644
--- a/src/lib/components/Modal.svelte
+++ b/src/lib/components/Modal.svelte
@@ -163,6 +163,7 @@
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
background: white;
overflow: hidden;
+ z-index: 9999;
}
.modal.dropdown {
@@ -171,11 +172,12 @@
right: 0;
max-width: 320px;
width: 320px;
- z-index: 1000;
+ z-index: 10000;
}
.modal::backdrop {
background: rgba(0, 0, 0, 0.1);
+ z-index: 9998;
}
.modal-content {
diff --git a/src/lib/components/sheet/sheet-content.svelte b/src/lib/components/sheet/sheet-content.svelte
index 2ff0fea..83ebc91 100644
--- a/src/lib/components/sheet/sheet-content.svelte
+++ b/src/lib/components/sheet/sheet-content.svelte
@@ -1,7 +1,7 @@