Skip to content

Commit

Permalink
fixed z-index issue
Browse files Browse the repository at this point in the history
  • Loading branch information
KitoC committed Jul 31, 2024
1 parent dccc573 commit 3292ec0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/components/ActionsMenu/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export const ActionsMenuBody = ({
>
<div
ref={ref}
style={{ ...actionMenu.floatingStyles }}
style={{ ...actionMenu.floatingStyles, zIndex: 21 }}
aria-labelledby={actionMenu.labelId}
{...actionMenu.getFloatingProps(props)}
className="actionMenu-content"
Expand Down
2 changes: 1 addition & 1 deletion lib/components/Popover/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export default function Popover({
<StyledPopoverContainer
className={`Tooltip popover ${isVisible ? "visible" : ""}`}
ref={refs.setFloating}
style={floatingStyles}
style={{ ...floatingStyles, zIndex: 21 }}
{...getFloatingProps()}
>
<StyledPopover
Expand Down

0 comments on commit 3292ec0

Please sign in to comment.