Skip to content

Commit

Permalink
fix: /recruit 문의하기 모바일 레이아웃 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiacho committed Mar 2, 2024
1 parent fbfc16f commit d939d24
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/views/RecruitPage/components/Contact/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,19 @@ const GridWrapper = styled.div`
grid-template-columns: auto auto;
justify-content: space-between;
row-gap: 80px;
column-gap: 160px;
margin-top: 80px;
/* 태블릿 뷰 */
@media (max-width: 1299px) and (min-width: 766px) {
row-gap: 50px;
margin-top: 40px;
grid-template-columns: 1fr;
row-gap: 60px;
margin-top: 48px;
}
/* 모바일 뷰 */
@media (max-width: 765.9px) {
grid-template-columns: 1fr;
row-gap: 20px;
margin-top: 20px;
row-gap: 40px;
margin-top: 30px;
}
`;

Expand Down

0 comments on commit d939d24

Please sign in to comment.