fromis_9/frontend/src/index.css

38 lines
627 B
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
/* 기본 스타일 */
html {
overflow-y: scroll; /* 항상 스크롤바 공간 확보 - 화면 밀림 방지 */
}
body {
font-family: "Noto Sans KR", sans-serif;
background-color: #fafafa;
color: #1a1a1a;
}
/* 최소 너비 설정 - 화면 축소시 깨짐 방지 */
#root {
min-width: 1200px;
}
/* 스크롤바 스타일 */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #548360;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #456e50;
}