fix(ActionButton): add z-index class to dropdown for proper stacking

This commit is contained in:
Sam Chau
2025-11-05 21:41:31 +10:30
parent 697d241adf
commit 80019b72a6

View File

@@ -45,7 +45,7 @@
</button>
{#if hasDropdown && isHovered}
<div transition:fly={{ y: -8, duration: 150 }}>
<div class="z-50" transition:fly={{ y: -8, duration: 150 }}>
<slot name="dropdown" {dropdownPosition} open={isHovered} />
</div>
{/if}