31 lines
612 B
Plaintext
31 lines
612 B
Plaintext
/** index.wxss **/
|
|
@import "../../../styles/base.less";
|
|
@import "../../../styles/mixins.less";
|
|
|
|
.page-body {
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
background-color: #fff;
|
|
box-sizing: border-box;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
.text {
|
|
font-size: @size-font-base;
|
|
color: @text-color;
|
|
}
|
|
.circle-view {
|
|
padding: @size-spacing-base;
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
border: 1px dashed @primary-color;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |