Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

UI: Fix z-index in modal elements #78

Merged
merged 3 commits into from
Dec 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/Modal/Modal.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const StyledOverlay = styled.div`
inset: 0px;
width: 100%;
height: 100%;
z-index: 10;
`;

export const StyledContent = styled.div<{
Expand All @@ -27,6 +28,7 @@ export const StyledContent = styled.div<{
max-width: calc(100% - 40px);
max-height: 85vh;
overflow: hidden;
z-index: 11;

&:focus-visible {
outline: none;
Expand Down
Loading