Skip to content

Commit

Permalink
feat: 반응형 rem 사이즈 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
leve68 committed Aug 16, 2024
1 parent 17f256a commit ad37dde
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Binary file modified src/assets/.DS_Store
Binary file not shown.
18 changes: 18 additions & 0 deletions src/styles/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,21 @@
font-family: "Kia-Signature-Light";
src: url(../assets/fonts/KiaSignatureFixLight.ttf);
}

@media (max-width: 1200px), (max-height: 900px) {
html {
font-size: 12px;
}
}

@media (max-width: 992px), (max-height: 700px) {
html {
font-size: 10px;
}
}

@media (max-width: 768px), (max-height: 600px) {
html {
font-size: 8px;
}
}

0 comments on commit ad37dde

Please sign in to comment.