Skip to content

Commit

Permalink
fix: 모달컨테이너 article 태그, div 스타일 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
a-honey committed Feb 16, 2024
1 parent 8a46311 commit 7be7d3d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/components/atoms/ModalContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ interface ModalBoxProps {

const ModalContainer: React.FC<ModalBoxProps> = ({ children }) => {
return (
<div className="p-[20px] pt-[40px]">
<div className="relative">
<div className="absolute top-[-16px] right-[200px] left-[200px] h-[4px] bg-gray-500 rounded-[100px]"></div>
</div>
<article className="p-[20px] pt-[40px] relative">
<div className="absolute top-[16px] right-[200px] left-[200px] h-[4px] bg-gray-500 rounded-[100px]"></div>
{children}
</div>
</article>
);
};

Expand Down

0 comments on commit 7be7d3d

Please sign in to comment.