小程序适配底部home区域
app.wxcss
page {
/* 必须再page标签下定义,其他地方才能使用,否则需要在其他地方在定义一次 */
--iphonex-fix-bottom: 0;
--iphonex-fix-bottom: constant(safe-area-inset-bottom);
--iphonex-fix-bottom: env(safe-area-inset-bottom);
}
.full-screen {
min-height: 100vh;
padding-bottom: var(--iphonex-fix-bottom) !important;
}