Skip to content

Commit

Permalink
fix: 모달 className 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Mar 1, 2023
1 parent 5ecd49b commit 9e5362e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export const Modal = ({
children,
}: propsType) => {
return (
<_Background className={className}>
<_Background>
<OutsideClickHandler onOutsideClick={close}>
<_Modal>
<_Modal className={className}>
<_CloseWrapper onClick={close}>
<Close size={18} />
</_CloseWrapper>
Expand Down

0 comments on commit 9e5362e

Please sign in to comment.