hookehuyr

fix(scan-checkin-detail): 调整扫码签到详情页底部布局适配安全区域

调整页面底部内边距至268rpx,修改固定操作栏的底部偏移值以适配移动端安全区域
1 .scan-checkin-detail-page { 1 .scan-checkin-detail-page {
2 min-height: 100vh; 2 min-height: 100vh;
3 - padding: 0 0 240rpx; 3 + padding: 0 0 268rpx;
4 background: #ebeaec; 4 background: #ebeaec;
5 box-sizing: border-box; 5 box-sizing: border-box;
6 } 6 }
...@@ -127,8 +127,8 @@ ...@@ -127,8 +127,8 @@
127 position: fixed; 127 position: fixed;
128 left: 24rpx; 128 left: 24rpx;
129 right: 24rpx; 129 right: 24rpx;
130 - bottom: calc(84rpx + constant(safe-area-inset-bottom)); 130 + bottom: calc(52rpx + constant(safe-area-inset-bottom));
131 - bottom: calc(84rpx + env(safe-area-inset-bottom)); 131 + bottom: calc(52rpx + env(safe-area-inset-bottom));
132 display: flex; 132 display: flex;
133 justify-content: center; 133 justify-content: center;
134 z-index: 20; 134 z-index: 20;
......