22 lines
389 B
Plaintext
22 lines
389 B
Plaintext
/** index.wxss **/
|
|
@import "../../../styles/base.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();
|
|
}
|
|
|
|
.g-cell-hover:extend(.g-cell) {
|
|
background-color: gainsboro;
|
|
}
|
|
|
|
.focused {
|
|
background-color: pink;
|
|
}
|