본문 바로가기

프론트엔드/next.js [v14]

[Next.js 14] 초기 설정 - app/global.css

app/global.css 

 
 html {
  font-size: 62.5%; /* 기본 16px인데 62.5%하면 1rem=10px가되고 1.6rem= 16px가돼서 계산하기편함 */
 }

 html,
 body {
  margin: 0;
  padding: 0;
 }
 
 body {
  color: var(--ts-color);
  background: white;
  font-size: 1.6rem;
 }

 .fij {
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .fi {
  display: flex;
  align-items: center;
 }

input {
  outline: none;
}