Skip to content

Commit

Permalink
Merge pull request #77 from andreystepanov/fix-minimap-overlap
Browse files Browse the repository at this point in the history
Fixing minimap overlap issue (#76)
  • Loading branch information
hojberg authored Mar 29, 2024
2 parents d8d7826 + 3367cee commit 1640eb2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/css/ui/components/action-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@
gap: 0;
padding: 0.375rem;
animation: slide-down 0.2s var(--anim-elastic);
z-index: var(--layer-popover);
/*
It must be greater than `workspace-minimap` z-index value.
Incrementing by 1 fixes issue #76.
*/
z-index: calc(var(--layer-tooltip) + 1);
overflow: hidden;
}

Expand Down

0 comments on commit 1640eb2

Please sign in to comment.