fix: location search result z-index (#18379)

This commit is contained in:
Alex 2025-05-20 11:22:30 -05:00 committed by GitHub
parent bdf19ce331
commit c05aa445d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -118,7 +118,7 @@
>
{#snippet promptSnippet()}
<div class="flex flex-col w-full h-full gap-2">
<div class="relative w-64 sm:w-96">
<div class="relative w-64 sm:w-96 z-1">
{#if suggestionContainer}
<div use:listNavigation={suggestionContainer}>
<button type="button" class="w-full" onclick={() => (hideSuggestion = false)}>
@ -160,7 +160,7 @@
</div>
<span>{$t('pick_a_location')}</span>
<div class="h-[500px] min-h-[300px] w-full">
<div class="h-[500px] min-h-[300px] w-full z-0">
{#await import('../shared-components/map/map.svelte')}
{#await delay(timeToLoadTheMap) then}
<!-- show the loading spinner only if loading the map takes too much time -->