feat: 本次提交更新内容如下

新项目模板初始化
This commit is contained in:
2025-07-17 21:56:53 +08:00
parent 1c64a13058
commit 6a4e99885d
19 changed files with 339 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
html, body {
height: 100%;
overflow: hidden; // 禁止 body 滚动和回弹
}
#root, .app-content {
height: 100vh;
overflow-y: auto;
-webkit-overflow-scrolling: touch; // iOS 惯性滚动
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
background: #f5f5f5;
}