Skip to content

Commit

Permalink
Merge branch '메인페이지-반응형' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Jul 29, 2024
2 parents 9461c75 + 00c21bf commit 98920d8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/components/Main2/Schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ const Schedule = () => {
);
})}
</_TextProvider>
<_MobileText>
원서제출 기간은
<br />
10/14 ~ 10/17입니다.
</_MobileText>
</_Wrapper>
);
};
Expand All @@ -74,6 +79,10 @@ const _ProgressProvider = styled.div`
display: flex;
justify-content: center;
align-items: center;
@media (max-width: 699px) {
display: none;
}
`;

const _TextProvider = styled.div`
Expand All @@ -94,6 +103,10 @@ const _TextProvider = styled.div`
color: ${theme.color.black300};
}
}
@media (max-width: 699px) {
display: none;
}
`;

const _ScheduleCircle = styled.div`
Expand All @@ -109,3 +122,14 @@ const _ScheduleLine = styled.div`
background-color: ${theme.color.orange800};
margin: 0 20px;
`;

const _MobileText = styled.div`
display: none;
color: white;
font-size: 24px;
font-weight: 700;
@media (max-width: 699px) {
display: block;
}
`;
6 changes: 6 additions & 0 deletions src/pages/Main2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ const _Title = styled.div`
font-size: 48px;
font-weight: 700;
color: white;
@media screen and (max-width: 900px) {
font-size: 40px;
}
@media screen and (max-width: 760px) {
font-size: 36px;
}
`;

const _Line = styled.div`
Expand Down

0 comments on commit 98920d8

Please sign in to comment.