Skip to content

Commit

Permalink
Merge pull request #108 from Devminjeong-eum/fix/DEV-134
Browse files Browse the repository at this point in the history
[DEV-134] 복사완료화면이 오른쪽으로 밀리지 않도록 수정
  • Loading branch information
ono212 authored Jul 8, 2024
2 parents 00680b2 + be0df37 commit 44fbaab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/common/CopiedNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ interface Props {
isOpen: boolean;
handleClose: () => void;
}

export function CopiedNotice({ isOpen, handleClose }: Props) {
if (!isOpen) return null;

return (
<div
className="w-screen h-screen fixed left-0 top-0 flex justify-center items-center z-10"
className="w-full h-screen fixed top-0 left-0 flex justify-center items-center z-10"
onClick={handleClose}
>
<div className="w-full h-screen flex justify-center items-center max-w-[430px] bg-[#000000] opacity-70 mix-blend-multiply" />
Expand Down

0 comments on commit 44fbaab

Please sign in to comment.