Skip to content

Commit ee353f4

Browse files
committed
design: 태블릿 반응형처리 보완
1 parent fd73e00 commit ee353f4

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

src/components/manageProjects/applicantInfo/ApplicantInfo.styled.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const Title = styled.h2`
2828
margin-bottom: 1.25rem;
2929
3030
@media ${({ theme }) => theme.mediaQuery.tablet} {
31-
font-size: ${({ theme }) => theme.heading.large.tabletFontSize};
31+
font-size: ${({ theme }) => theme.heading.medium.tabletFontSize};
3232
}
3333
`;
3434

@@ -38,7 +38,7 @@ export const Label = styled.p`
3838
color: ${({ theme }) => theme.color.deepGrey};
3939
4040
@media ${({ theme }) => theme.mediaQuery.tablet} {
41-
font-size: ${({ theme }) => theme.heading.medium.tabletFontSize};
41+
font-size: ${({ theme }) => theme.heading.semiSmall.tabletFontSize};
4242
}
4343
`;
4444

src/components/manageProjects/applicantInfo/LabelWithContent.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const Label = styled.p`
66
color: ${({ theme }) => theme.color.deepGrey};
77
88
@media ${({ theme }) => theme.mediaQuery.tablet} {
9-
font-size: ${({ theme }) => theme.heading.medium.tabletFontSize};
9+
font-size: ${({ theme }) => theme.heading.semiSmall.tabletFontSize};
1010
}
1111
`;
1212

src/components/manageProjects/applicantList/ApplicantItem.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ export const Button = styled.button<ButtonProps>`
4141
width: 6.5rem;
4242
height: 1.9rem;
4343
border-radius: ${({ theme }) => theme.borderRadius.small};
44-
font-size: ${({ theme }) => theme.heading.small.tabletFontSize};
44+
font-size: 0.6rem;
4545
}
4646
`;

src/components/manageProjects/passNonPassList/PassNonPassList.styled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ export const Wrapper = styled.ul`
2020
2121
@media ${({ theme }) => theme.mediaQuery.tablet} {
2222
min-width: 9rem;
23+
padding: 1rem;
2324
}
2425
`;

src/pages/manage/myProjectParticipantsPass/MyProjectVolunteersPass.styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const Title = styled.h1`
1515
margin-bottom: 1rem;
1616
1717
@media ${({ theme }) => theme.mediaQuery.tablet} {
18-
font-size: ${({ theme }) => theme.heading.medium.tabletFontSize};
18+
font-size: ${({ theme }) => theme.heading.semiSmall.tabletFontSize};
1919
}
2020
`;
2121

0 commit comments

Comments
 (0)