40 lines
727 B
Plaintext
40 lines
727 B
Plaintext
/** index.wxss **/
|
|
@import '../../../config/styles/mp/index.less';
|
|
@import '../../../config/styles/mp/mixins.less';
|
|
|
|
.view {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
background-color: @oak-bg-color-page;
|
|
box-sizing: border-box;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
.info-title {
|
|
margin-top: 34rpx;
|
|
margin-left: 14rpx;
|
|
margin-bottom: 14rpx;
|
|
color: @oak-text-color-secondary;
|
|
}
|
|
|
|
.info {
|
|
margin-left: 20rpx;
|
|
margin-right: 20rpx;
|
|
background-color: @oak-bg-color-container;
|
|
border-radius: 14rpx;
|
|
padding: 8rpx;
|
|
}
|
|
|
|
.notice-warning {
|
|
color: @oak-color-warning;
|
|
}
|
|
|
|
.btn {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
// margin: 0 10px;
|
|
}
|