Skip to content

Commit

Permalink
style: Modal className 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kanghaeun committed Apr 6, 2024
1 parent 5687032 commit 9f07630
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FE/error/src/components/CheckModal/CheckCalendar.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.modal {
.CheckModal {
position: absolute;
top: 50%;
left: 50%;
Expand Down
6 changes: 3 additions & 3 deletions FE/error/src/components/CheckModal/CheckCalendar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const CheckCalendar = ({
<Modal
isOpen={isOpen}
onRequestClose={onRequestClose}
className="modal"
className="CheckModal"
overlayClassName="overlay"
>
<ModalBar>
Expand Down Expand Up @@ -93,7 +93,7 @@ export default CheckCalendar;

const ModalBar = styled.div`
margin-top: 0.5rem;
width: 100%;
width: 25rem;
display: flex;
flex-direction: row-reverse;
outline: none;
Expand All @@ -109,7 +109,7 @@ const ModalBar = styled.div`
`;

const ModalContent = styled.div`
padding: 1rem;
padding: 2rem;
display: flex;
flex-direction: column;
span {
Expand Down

0 comments on commit 9f07630

Please sign in to comment.