58 lines
898 B
Plaintext
58 lines
898 B
Plaintext
/** index.wxss **/
|
|
@import "../../../config/styles/mp/index.less";
|
|
@import "../../../config/styles/mp/mixins.less";
|
|
|
|
page {
|
|
height: 100%;
|
|
background-color: @oak-bg-color-page;
|
|
}
|
|
|
|
.page-body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
align-items: stretch;
|
|
padding: 0;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
.search-bar {
|
|
background-color: #fff;
|
|
padding: 10rpx;
|
|
z-index: 1;
|
|
margin-bottom: 20rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-end;
|
|
|
|
.search-input {
|
|
flex: 1;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
|
|
.relation {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.tag {
|
|
margin: 10rpx;
|
|
}
|
|
}
|
|
|
|
.info {
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: @oak-bg-color-container;
|
|
color: @oak-color-info;
|
|
}
|
|
|
|
.add {
|
|
position: fixed;
|
|
right: 20rpx;
|
|
bottom: 20rpx;
|
|
} |