Authored by yyq

fix

... ... @@ -111,15 +111,4 @@ export default {
overflow: scroll;
}
}
@supports (bottom: env(safe-area-inset-bottom)) {
.layout {
padding-bottom: env(safe-area-inset-bottom);
}
.layout.no-safe-area {
padding-bottom: 0;
}
}
</style>
... ...
<template>
<LayoutApp title="闲鱼潮玩转攻略" :show-back="true" :back-action="goBack">
<LayoutApp title="闲鱼潮玩转攻略" :show-back="true" :no-safe-area="true" :back-action="goBack">
<div class="body-warpper">
<ul>
<li v-for="(item, index) in dataList" :key="index">
... ...
... ... @@ -557,6 +557,14 @@ body {
#app {
height: calc(100% + env(safe-area-inset-bottom));
}
.layout {
padding-bottom: env(safe-area-inset-bottom);
}
.layout.no-safe-area {
padding-bottom: 0;
}
}
/* stylelint-disable */
... ...