Update map-tooltip.svelte

This commit is contained in:
Jesse Winton
2025-06-02 12:05:21 -04:00
parent 70c3531dc3
commit 31e2301228

View File

@@ -98,7 +98,13 @@
</div> </div>
{:else} {:else}
<div <div
class="text-caption text-primary flex h-5 items-center justify-center place-self-start rounded-md bg-black/6 p-1 text-center" class={classNames(
'text-caption text-primary flex h-5 items-center justify-center place-self-start rounded-md bg-black/6 p-1 text-center',
{
'text-primary bg-black/6': theme === 'light',
'text-primary bg-white/6': theme === 'dark'
}
)}
> >
<span class="text-micro -tracking-tight">Planned</span> <span class="text-micro -tracking-tight">Planned</span>
</div> </div>