Skip to content

Commit ff0837f

Browse files
authored
Merge pull request #10 from Nexters/feat/meet-invite-page-ui-edit
feat: 만남 초대장 페이지 퍼블리싱 수정
2 parents 36bbeab + 621b42a commit ff0837f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

apps/tuk-web/src/app/invite/meet/src/components/InviteMeet.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { useEffect, useState } from 'react';
44

55
import GradientBackground from '@/app/invite/meet/src/components/GradientBackground';
66
import { Button, CloseIcon } from '@/components';
7+
import { cn } from '@/lib';
78

89
const BANNER_KEY = 'invite-banner-dismissed-at';
910
const BANNER_RESHOW_MINUTES = 30;
@@ -59,7 +60,12 @@ const InviteMeet = () => {
5960
</div>
6061
)}
6162

62-
<h2 className="mt-[6.875rem] text-title-22-M text-black-500">
63+
<h2
64+
className={cn(
65+
'text-title-22-M text-black-500',
66+
showBanner ? 'mt-[6.875rem]' : 'mt-[1.875rem]'
67+
)}
68+
>
6369
보고 싶은 마음이
6470
<br />
6571
도착했어요
@@ -97,7 +103,7 @@ const InviteMeet = () => {
97103
</div>
98104
</div>
99105

100-
<div className="mt-[4.125rem] flex justify-center">
106+
<div className="mt-[4.125rem] flex justify-center pb-[9.0625rem]">
101107
<TukLogo />
102108
</div>
103109

apps/tuk-web/src/lib/cn.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const twMerge = extendTailwindMerge({
77
'font-size': [
88
'text-title-26-M',
99
'text-title-24-M',
10+
'text-title-22-M',
1011
'text-body-16-R',
1112
'text-body-16-M',
1213
'text-body-14-M',

0 commit comments

Comments
 (0)