feat: init

This commit is contained in:
2025-09-04 11:29:00 +08:00
parent 2c9059ce2f
commit ddbee614e8
89 changed files with 3476 additions and 349 deletions

View File

@@ -0,0 +1,20 @@
.main-layout {
height: 100%;
.layout-content {
height: 100%;
overflow-y: auto;
// padding-bottom: 150px;
padding-bottom: constant(safe-area-inset-bottom); /*兼容 IOS<11.2*/
padding-bottom: env(safe-area-inset-bottom); /*兼容 IOS>11.2*/
}
.layout-tab {
flex: 0 0 auto;
position: fixed;
bottom: 0;
width: 100%;
z-index: 1000;
background-color: #fff;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
}