Skip to content

Commit

Permalink
Merge pull request #100 from tempfiles-Team/37-전체-페이지-반응형-작업
Browse files Browse the repository at this point in the history
37 전체 페이지 반응형 작업
  • Loading branch information
ananjaemin committed Nov 21, 2022
2 parents 35e3ef6 + 034b4b9 commit 04559ac
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/styles/globalStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,18 @@ export const globalStyle = css`
--mobile-breakpoint: 767px;
--tablet-breakpoint: 991px;
--desktop-breakpoint: 1200px;
--vh: 100%;
}
html {
text-size-adjust: 100%;
font-size: 10px;
@media (max-width: 767px) {
font-size: 9px;
}
@media (max-width: 575px) {
font-size: 6px;
}
}
body {
background: var(--color-background);
Expand Down

0 comments on commit 04559ac

Please sign in to comment.