2025-12-31 21:51:23 +09:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
/* 기본 스타일 */
|
2025-12-31 22:05:28 +09:00
|
|
|
html {
|
|
|
|
|
overflow-y: scroll; /* 항상 스크롤바 공간 확보 - 화면 밀림 방지 */
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-31 21:51:23 +09:00
|
|
|
body {
|
|
|
|
|
background-color: #fafafa;
|
|
|
|
|
color: #1a1a1a;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-31 22:02:32 +09:00
|
|
|
/* 최소 너비 설정 - 화면 축소시 깨짐 방지 */
|
|
|
|
|
#root {
|
|
|
|
|
min-width: 1200px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-31 21:51:23 +09:00
|
|
|
/* 스크롤바 스타일 */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
2025-12-31 22:44:11 +09:00
|
|
|
height: 8px;
|
2025-12-31 21:51:23 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: #f1f1f1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: #548360;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: #456e50;
|
|
|
|
|
}
|