Skip to content

Commit

Permalink
update: 아이폰 자동확대 방지
Browse files Browse the repository at this point in the history
  • Loading branch information
truewayy committed Aug 11, 2022
1 parent 8f8ece3 commit 5e8a4b2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/pages/LectureInfo/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ export const SearchInput = styled.input`
&:focus {
outline: none;
}
@media screen and (max-width: 480px) {
font-size: 16px;
width: 123%;
transform: scale(0.8);
}
`;

export const Content = styled.div`
Expand Down
6 changes: 6 additions & 0 deletions src/pages/Main/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ export const SearchInput = styled.input`
&:focus {
outline: none;
}
@media screen and (max-width: 480px) {
font-size: 16px;
width: 123%;
transform: scale(0.8);
}
`;

export const HeadSelection = styled.div`
Expand Down

0 comments on commit 5e8a4b2

Please sign in to comment.