v0.3.7: 恢复前端Vue源码 + 修复AdminDashboard 401根源

This commit is contained in:
2026-05-17 13:26:36 +08:00
parent 09be4c307e
commit 8cd4dabb60
178 changed files with 20570 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
/* 全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
color: #333;
background: #f5f7fa;
}
:root {
--primary-color: #409eff;
--primary-dark: #337ecc;
--text-secondary: #909399;
--border-color: #e4e7ed;
--bg-white: #ffffff;
--shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
--radius-card: 12px;
}
a {
text-decoration: none;
color: var(--primary-color);
}