19 lines
358 B
Plaintext
19 lines
358 B
Plaintext
/** index.wxss **/
|
|
@import "../../../styles/cell.less";
|
|
@import "../../../styles/mixins.less";
|
|
|
|
.page-body {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
background-color: @background-color-base;
|
|
box-sizing: border-box;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
.col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|