- 后端: NestJS 11 + TypeORM + JWT认证 + SQLite/MySQL - 前端: React 19 + Ant Design 6 + Vite 8 + ECharts - 功能模块: 数据面板、学生管理、宿舍管理、入住管理、费用录入、账单管理、教室管理、押金管理、操作日志、账号管理 - 支持Docker一键部署
48 lines
869 B
CSS
48 lines
869 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* 移动端自适应 */
|
|
@media (max-width: 767px) {
|
|
.ant-table {
|
|
font-size: 13px;
|
|
}
|
|
.ant-table-cell {
|
|
padding: 8px 6px !important;
|
|
}
|
|
.ant-descriptions-item-label,
|
|
.ant-descriptions-item-content {
|
|
font-size: 13px;
|
|
}
|
|
.ant-modal {
|
|
max-width: calc(100vw - 24px) !important;
|
|
margin: 12px auto !important;
|
|
}
|
|
.ant-modal .ant-modal-body {
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
}
|
|
h2 {
|
|
font-size: 18px !important;
|
|
}
|
|
.ant-card {
|
|
margin-bottom: 8px;
|
|
}
|
|
.ant-space-item .ant-btn {
|
|
padding: 2px 6px;
|
|
font-size: 12px;
|
|
}
|
|
}
|