chore: 初始化CYH TikTok短剧管理后台项目

创建完整的Vite+React+TypeScript后台项目基础结构,包含登录页、工作台、权限管理等功能页面,配置了项目依赖、构建脚本和基础样式
This commit is contained in:
2026-07-01 11:54:45 +08:00
commit 7da5df2419
21 changed files with 2771 additions and 0 deletions

25
src/index.css Normal file
View File

@@ -0,0 +1,25 @@
* {
box-sizing: border-box;
}
html,
body,
#root {
width: 100%;
min-width: 320px;
min-height: 100%;
margin: 0;
}
body {
color: #1d2129;
background: #f2f3f5;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button,
input,
textarea,
select {
font: inherit;
}