Skip to content

Commit

Permalink
fix : 모바일 환경에서 뒤로가기 폰트 크기 수정 (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
klmhyeonwoo committed Oct 10, 2023
1 parent cb5f135 commit dbcd73d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/DetailSectionBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export default function DetailSectionBtn(props: any) {
transition: 0.4s all;
@media (max-width: 479px) {
font-size: 10px;
font-size: 12px;
}
@media all and (min-width: 480px) and (max-width: 767px) {
font-size: 12px;
font-size: 13px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
font-size: 14px;
Expand Down

0 comments on commit dbcd73d

Please sign in to comment.