27 lines
552 B
SCSS
27 lines
552 B
SCSS
/* components/page-container/page-container.wxss */
|
|
|
|
.page-container {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
background-color: var(--pg-container-bg-color);
|
|
|
|
// 预留安全区
|
|
&--safe {
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
}
|
|
|
|
.page-container__content {
|
|
flex: 1;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|