Skip to content

Commit 1ada899

Browse files
authored
Merge pull request #17 from Nexters/fix/meet-bg-height
fix: 모임, 만남 초대장 페이지 배경 디테일 수정
2 parents e715902 + 470056d commit 1ada899

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

apps/tuk-web/src/app/gathering/meet/src/components/GatheringMeet.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ const GatheringMeet = () => {
3838
return () => clearTimeout(timeout);
3939
}, []);
4040
return (
41-
<div className="relative h-screen w-full overflow-y-auto overflow-x-hidden bg-[#fafafa] px-5">
41+
<div className="relative w-full overflow-y-auto overflow-x-hidden bg-[#fafafa] px-5">
4242
<div className="pointer-events-none absolute left-1/2 top-1/2 h-[340px] w-[706px] -translate-x-1/2 -translate-y-1/2 rotate-[-21deg] bg-gradient-to-b from-[#FFA098] to-[#FDD27C] opacity-60 blur-[100px]" />
4343

44-
<AppInstallBanner onClose={handleCloseBanner} />
44+
{showBanner && <AppInstallBanner onClose={handleCloseBanner} />}
4545

4646
<h2
4747
className={cn(
@@ -91,7 +91,7 @@ const GatheringMeet = () => {
9191
</div>
9292
</div>
9393

94-
<div className="mt-[4.125rem] flex justify-center pb-[2.8125rem]">
94+
<div className="mt-[4.125rem] flex justify-center pb-[9.0625rem]">
9595
<TukLogo />
9696
</div>
9797

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ const GradientBackground = () => {
33
<>
44
<div className="pointer-events-none absolute left-[-340px] top-[44px] h-[422px] w-[1018px] rotate-[-80deg] rounded-full bg-gradient-to-tr from-[#DCC9F7] to-[#94C1D3] opacity-50 blur-[180px]" />
55

6-
<div className="pointer-events-none absolute left-[83px] top-[196px] h-[610px] w-[618px] rotate-[82deg] rounded-full bg-gradient-to-br from-[#DCC9F7] to-[#94C1D3] opacity-60 blur-[180px]" />
6+
{/* <div className="pointer-events-none absolute left-[83px] top-[196px] h-[610px] w-[618px] rotate-[82deg] rounded-full bg-gradient-to-br from-[#DCC9F7] to-[#94C1D3] opacity-60 blur-[180px]" />
77
8-
<div className="pointer-events-none absolute left-[61px] top-[542px] h-[449px] w-[423px] rotate-[82deg] rounded-full bg-gradient-to-br from-[#DCC8F8] to-white-default opacity-50 blur-[120px]" />
8+
<div className="pointer-events-none absolute left-[61px] top-[542px] h-[449px] w-[423px] rotate-[82deg] rounded-full bg-gradient-to-br from-[#DCC8F8] to-white-default opacity-50 blur-[120px]" /> */}
99
</>
1010
);
1111
};

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const InviteMeet = () => {
4242
<div className="relative w-full overflow-y-auto overflow-x-hidden bg-gradient-to-b from-white-default to-[#DCC8F8] px-5">
4343
<GradientBackground />
4444

45-
<AppInstallBanner onClose={handleCloseBanner} />
45+
{showBanner && <AppInstallBanner onClose={handleCloseBanner} />}
4646

4747
<h2
4848
className={cn(
@@ -92,7 +92,7 @@ const InviteMeet = () => {
9292
</div>
9393
</div>
9494

95-
<div className="mt-[4.125rem] flex justify-center pb-[2.8125rem]">
95+
<div className="mt-[4.125rem] flex justify-center pb-[9.0625rem]">
9696
<TukLogo />
9797
</div>
9898

apps/tuk-web/src/styles/globals.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,12 @@
9090
@apply font-noto text-[24px] font-medium leading-[33px] tracking-[-0.09375rem];
9191
}
9292
}
93+
94+
* {
95+
-ms-overflow-style: none;
96+
scrollbar-width: none;
97+
}
98+
99+
*::-webkit-scrollbar {
100+
display: none;
101+
}

0 commit comments

Comments
 (0)