mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 21:50:34 +03:00
fix z-index on popup stack
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
parent
9d39529d9f
commit
779f926d78
@ -30,7 +30,7 @@
|
||||
|
||||
<svelte:window on:keydown={handleKeydown} />
|
||||
|
||||
{#each $modal as popup}
|
||||
<PopupInstance is={popup.is} props={popup.props} element={popup.element} />
|
||||
{#each $modal as popup, i}
|
||||
<PopupInstance is={popup.is} props={popup.props} element={popup.element} zIndex={(i+1) * 500}/>
|
||||
{/each}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user