Files
ipad/src/index.css
xianyi 0efc4c186e 添加接口
- 体检客户列表
- 体检进度详情
- 客户详情
2025-12-10 17:28:15 +08:00

55 lines
1.1 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
/* 自定义滚动条(圆角、细滚动条) */
.custom-scroll {
scrollbar-width: none;
scrollbar-color: #cbd5e1 #f8fafc;
}
.custom-scroll::-webkit-scrollbar {
width: 8px;
}
.custom-scroll::-webkit-scrollbar-track {
background: #f8fafc;
border-radius: 9999px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 9999px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
:root {
font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
color: #0f172a;
background-color: #f8fafc;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
min-height: 100vh;
background-color: #f8fafc;
}
/* 优化下拉选项样式 */
select option {
padding: 8px 12px;
background-color: white;
color: #374151;
font-size: 0.75rem;
}
select option:hover {
background-color: #3b82f6;
color: white;
}
select option:checked {
background-color: #3b82f6;
color: white;
}