File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
app/invite/meet/src/components Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { useEffect, useState } from 'react';
44
55import GradientBackground from '@/app/invite/meet/src/components/GradientBackground' ;
66import { Button , CloseIcon } from '@/components' ;
7+ import { cn } from '@/lib' ;
78
89const BANNER_KEY = 'invite-banner-dismissed-at' ;
910const 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
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments