Skip to content

Commit

Permalink
Feat: 인트로 모바일 뷰 그라데이션 색상 변경경
Browse files Browse the repository at this point in the history
  • Loading branch information
parkjoohyung0826 committed Feb 15, 2025
1 parent f040c63 commit 16c9a61
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/Main/Intro/Intro.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
`;
Expand Down

0 comments on commit 16c9a61

Please sign in to comment.