Spaces:
Runtime error
Runtime error
File size: 629 Bytes
159b89e 0930a58 159b89e 0930a58 159b89e 0930a58 159b89e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | /* app.scss */
/* 针对 H5 端进行强制宽度限制 */
/* #ifdef h5 */
html {
background-color: #f7f8fa !important;
}
body {
max-width: 480PX !important;
margin: 0 auto !important;
background-color: #fff !important;
box-shadow: 0 0 20PX rgba(0, 0, 0, 0.2) !important;
min-height: 100vh !important;
position: relative !important;
left: 0 !important;
right: 0 !important;
}
/* 确保根容器也遵循宽度 */
#app, .taro_router {
width: 100% !important;
max-width: 480PX !important;
margin: 0 auto !important;
}
/* #endif */
/* #ifdef weapp */
.index {
background-color: #f7f8fa;
}
/* #endif */
|