Skip to content

Commit

Permalink
Create Modal.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Fast677 authored Feb 11, 2025
1 parent 73e5105 commit 8b663df
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/platform/frontend/components/Modal/Modal.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}

.modal-content {
background: white;
padding: 20px;
border-radius: 8px;
position: relative;
}

.modal-close {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 16px;
cursor: pointer;
}

0 comments on commit 8b663df

Please sign in to comment.