From 16c9a61791afc900ac03fda9786a14bf93f36601 Mon Sep 17 00:00:00 2001 From: parkjoohyung Date: Sat, 15 Feb 2025 19:36:14 +0900 Subject: [PATCH] =?UTF-8?q?Feat:=20=EC=9D=B8=ED=8A=B8=EB=A1=9C=20=EB=AA=A8?= =?UTF-8?q?=EB=B0=94=EC=9D=BC=20=EB=B7=B0=20=EA=B7=B8=EB=9D=BC=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=EC=85=98=20=EC=83=89=EC=83=81=20=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Main/Intro/Intro.styled.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pages/Main/Intro/Intro.styled.tsx b/src/pages/Main/Intro/Intro.styled.tsx index cd2dbbc..fff332b 100644 --- a/src/pages/Main/Intro/Intro.styled.tsx +++ b/src/pages/Main/Intro/Intro.styled.tsx @@ -6,7 +6,10 @@ export const Container = styled.div<{ $isMobile: boolean; $isTablet: boolean }>` align-items: flex-start; justify-content: center; height: ${({ $isMobile, $isTablet }) => ($isMobile ? "80vh" : $isTablet ? "100vh" : "110vh")}; - background: linear-gradient(90deg, #28723F, #A2E9B8); + background: ${({ $isMobile }) => ( + $isMobile ? "linear-gradient(90deg, #28723F, #75e298)" + : "linear-gradient(90deg, #28723F, #A2E9B8)" + )}; padding: ${({ $isMobile }) => ($isMobile ? "0px" : "50px")}; color: white; `;