Skip to content

Commit

Permalink
feat: 임시 반응형
Browse files Browse the repository at this point in the history
  • Loading branch information
ananjaemin committed Nov 21, 2022
1 parent 64c4ae5 commit 034b4b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/styles/globalStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,19 @@ export const globalStyle = css`
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);
color: var(--color-text-primary);
letter-spacing: -0.05rem;
font-size: 1.6rem;
height: calc(var(--vh, 1vh) * 100);
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
Expand Down

0 comments on commit 034b4b9

Please sign in to comment.