Skip to content

Commit

Permalink
fix modal zindex
Browse files Browse the repository at this point in the history
  • Loading branch information
Megha-Dev-19 committed Apr 22, 2024
1 parent 42fd993 commit 2fcb421
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/astraplusplus/widget/Layout/Modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ const Overlay = styled.div`
display: grid;
place-items: center;
overflow-y: auto;
z-index: 99999;
z-index: 999;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(6px);
@media (max-width: 768px) {
top: 75px;
}
`;

const Content = styled.div`
Expand Down

0 comments on commit 2fcb421

Please sign in to comment.