Skip to content

Commit

Permalink
Merge pull request #1615 from visualize-admin/fix/dialog-close-button
Browse files Browse the repository at this point in the history
fix: Dialog close button being overlapped by other elements
  • Loading branch information
bprusinowski authored Jun 14, 2024
2 parents c468f9a + 0f4fdac commit bd92296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/dialog-close-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import SvgIcClose from "@/icons/components/IcClose";
export const DialogCloseButton = (props: IconButtonProps) => (
<IconButton
{...props}
sx={{ position: "absolute", top: "1rem", right: "1rem" }}
sx={{ zIndex: 1, position: "absolute", top: "1rem", right: "1rem" }}
>
<SvgIcClose />
</IconButton>
Expand Down

0 comments on commit bd92296

Please sign in to comment.