Skip to content

Commit

Permalink
fix(frontend): Fix debug runs zIndex (#1822)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatonramadani authored Jul 10, 2023
1 parent 9e6aea6 commit ce9088e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@
</DrawerContent>
</Drawer>

<Drawer bind:open={$jobsDrawerOpen} size="900px">
<Drawer bind:open={$jobsDrawerOpen} size="900px" --zIndex={1003}>
<DrawerContent
noPadding
title="Debug Runs"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/components/common/drawer/Drawer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
.drawer.open {
height: 100%;
width: 100%;
z-index: 1002;
z-index: var(--zIndex, 1002);
transition: z-index var(--duration) step-start;
pointer-events: auto;
}
Expand Down

0 comments on commit ce9088e

Please sign in to comment.