소스 검색

no message

reset-do-picking-order
부모
커밋
2da62e9bc7
2개의 변경된 파일19개의 추가작업 그리고 0개의 파일을 삭제
  1. +14
    -0
      src/app/global.css
  2. +5
    -0
      tailwind.config.js

+ 14
- 0
src/app/global.css 파일 보기

@@ -33,12 +33,26 @@ body {
html {
/* Prefer dynamic viewport height so layout can adapt to keyboard (if browser resizes) */
height: 100%;
/* Base font size: slightly larger for readability */
font-size: 16px;
}
@media (min-width: 640px) {
html {
font-size: 17px;
}
}
@media (min-width: 1024px) {
html {
font-size: 18px;
}
}
body {
min-height: 100%;
min-height: 100dvh;
background-color: var(--background);
color: var(--foreground);
font-size: 1rem;
line-height: 1.6;
}

/* Full-height containers: use dvh so keyboard doesn’t squash the layout when overlay is used */


+ 5
- 0
tailwind.config.js 파일 보기

@@ -18,6 +18,11 @@ module.exports = {
border: "var(--border)",
muted: "var(--muted)",
},
fontSize: {
xs: ["0.8125rem", { lineHeight: "1.25rem" }],
sm: ["0.9375rem", { lineHeight: "1.375rem" }],
base: ["1.0625rem", { lineHeight: "1.625rem" }],
},
},
},
plugins: [],


불러오는 중...
취소
저장