Skip to content

Commit b8c126c

Browse files
committed
fix: 스타일 누락건 수정
1 parent ab687ba commit b8c126c

12 files changed

Lines changed: 69 additions & 19 deletions

File tree

components/common/Banner/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function Banner({
3636

3737
const StyledBox = styled.div<BannerProps>`
3838
background-repeat: no-repeat;
39-
background-size: cover;
39+
background-size: 100% auto;
4040
background-position: center;
4141
background-image: url(${({ backgroundImg }) => backgroundImg});
4242
background-color: ${({ theme, backgroundImg }) =>

components/common/JoinSection/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ const ImageContainer = styled.div`
7676
${media.tablet} {
7777
height: 750px;
7878
}
79+
80+
${media.mobile} {
81+
height: 580px;
82+
background-image: url('/assets/images/28th/recruit_bg_mo.png');
83+
}
7984
`;
8085

8186
const InnerContainer = styled.div`

components/home/IntroSection/Banner28th.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Banner28th = () => {
3333
</TitleTablet>
3434
<TitleMobile>
3535
<Image
36-
src="/assets/images/28th/title_mobile.png"
36+
src="/assets/images/28th/title_pc.png"
3737
alt="28th Title"
3838
width={423}
3939
height={107}

components/home/ProjectSection/index.tsx

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,14 @@ function ProjectSection(): ReactElement {
4747
}
4848

4949
const ProjectContainer = styled(SectionTemplate)`
50-
padding: 200px 0;
50+
padding: 200px 80px;
5151
display: flex;
5252
flex-direction: column;
5353
align-items: center;
54+
55+
${media.mobile} {
56+
padding: 200px 20px;
57+
}
5458
`;
5559

5660
const TextBoxLayout = styled.div`
@@ -61,18 +65,6 @@ const TextBoxLayout = styled.div`
6165
& > div {
6266
max-width: 1200px;
6367
}
64-
65-
${media.tablet} {
66-
& > div {
67-
margin: 0 80px;
68-
}
69-
}
70-
71-
${media.mobile} {
72-
& > div {
73-
margin: 0 12px;
74-
}
75-
}
7668
`;
7769

7870
export default ProjectSection;

components/recruit/RecruitBanner/index.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ const RecruitBannerContainer = styled.div`
8383
background: ${({ theme }) => theme.palette.white};
8484
8585
${media.mobile} {
86-
height: 100vh;
86+
height: auto;
87+
aspect-ratio: 328 / 580;
8788
}
8889
`;
8990

@@ -92,6 +93,10 @@ const BannerImageBox = styled.div`
9293
width: 100%;
9394
height: 100%;
9495
background: url('/assets/images/28th/recruit_bg.png') no-repeat center/cover;
96+
97+
${media.mobile} {
98+
background-image: url('/assets/images/28th/recruit_bg_mo.png');
99+
}
95100
`;
96101

97102
const slideUp = keyframes`

database/recruit.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const FIND_YAPPU = [
7373
textParts: [
7474
'새로운 가능성을',
7575
{
76-
img: '/assets/icons/yappu_red.svg',
76+
img: '/assets/icons/yappu_orange.svg',
7777
width: 62,
7878
height: 49,
7979
mobileWidth: 28,
@@ -89,7 +89,7 @@ export const FIND_YAPPU = [
8989
'매주 토요일 정규 세션에\n',
9090
'참여 가능한 분을',
9191
{
92-
img: '/assets/icons/yappu_blue.svg',
92+
img: '/assets/icons/yappu_sky.svg',
9393
width: 76,
9494
height: 54,
9595
mobileWidth: 38,
@@ -103,7 +103,7 @@ export const FIND_YAPPU = [
103103
'타 직군과의 1회 이상\n',
104104
'협업 경험이 있는 분',
105105
{
106-
img: '/assets/icons/yappu_white.svg',
106+
img: '/assets/icons/yappu_yellow.svg',
107107
width: 68,
108108
height: 54,
109109
mobileWidth: 34,
Lines changed: 16 additions & 0 deletions
Loading

public/assets/icons/yappu_sky.svg

Lines changed: 16 additions & 0 deletions
Loading
Lines changed: 16 additions & 0 deletions
Loading
1.6 MB
Loading

0 commit comments

Comments
 (0)