Skip to content

Commit

Permalink
design: 팀 소개 모달 크기 보완
Browse files Browse the repository at this point in the history
  • Loading branch information
nim-od committed Aug 13, 2024
1 parent 799dee2 commit 673b84a
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions packages/user/src/components/shared/modal/TeamDescriptionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,20 @@ export default function TeamDescriptionModal({ type, openTrigger }: TeamDescript

return (
<Modal openTrigger={openTrigger}>
<div className="flex flex-col items-center justify-center px-[50px] py-[30px] sm:h-full sm:px-[75px] sm:py-[40px]">
<div className="flex flex-col items-center gap-2.5">
<h6 className="text-heading-11 whitespace-pre-line font-medium text-neutral-100 sm:whitespace-normal">
{subTitle}
</h6>
<h3>{title}</h3>
<div className="flex w-full flex-col items-center justify-center p-[30px] px-[40px] py-[30px] sm:h-full sm:px-[50px] sm:py-[40px]">
<div className="max-w-[350px] w-full sm:max-w-[600px] md:max-w-[800px] lg:max-w-[800px] ">
<div className="flex flex-col items-center gap-2.5">
<h6 className="text-heading-11 whitespace-pre-line font-medium text-neutral-100 sm:whitespace-normal">
{subTitle}
</h6>
<h3>{title}</h3>
</div>
<div className="mb-7 grid grid-flow-row sm:grid-flow-col">
<DescriptionImage src={`${imageBaseUrl}-1.png`} />
<DescriptionImage src={`${imageBaseUrl}-2.png`} />
</div>
<p className="text-body-4 text-neutral-100">{details}</p>
</div>
<div className="mb-7 grid grid-flow-row sm:grid-flow-col">
<DescriptionImage src={`${imageBaseUrl}-1.png`} />
<DescriptionImage src={`${imageBaseUrl}-2.png`} />
</div>
<p className="text-body-4 text-neutral-100">{details}</p>
</div>
</Modal>
);
Expand Down

0 comments on commit 673b84a

Please sign in to comment.