Skip to content

Commit

Permalink
style: 이미지 너비, 높이 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Arooming committed Jan 19, 2024
1 parent 5ace06f commit e3c0572
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Mypage/components/NoteModal/NoteModal.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ export const ModalWrapper = styled.div<{
}>`
position: relative;
width: 31.1rem;
width: 31rem;
height: 35.8rem;
padding: 0.6rem 0.4rem 1.5rem 2rem;
border-radius: 0.4rem;
background-size: cover;
background-size: 31rem 35.8rem;
color: ${({ noteTextColor }) => {
return noteTextColor;
}};
Expand All @@ -34,7 +35,7 @@ export const ModalWrapper = styled.div<{
return `background-color: ${noteBackground}`;
} else {
return `background: url(${noteBackground});
background-size: cover;`;
background-size: 31rem 35.8rem;`;
}
}}
`;
Expand Down

0 comments on commit e3c0572

Please sign in to comment.