57 lines
947 B
Plaintext
57 lines
947 B
Plaintext
/** index.wxss **/
|
|
@import "../../../../config/styles/_base.less";
|
|
@import "../../../../config/styles/_mixins.less";
|
|
|
|
.page-body {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
background-color: @bg-color-fade;
|
|
box-sizing: border-box;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
|
|
.avatar {
|
|
font-size: 128rpx;
|
|
color: @text-level-3-color;
|
|
height: 140rpx;
|
|
width: 140rpx;
|
|
border-radius: 14rpx;
|
|
}
|
|
|
|
.nickname {
|
|
font-size: 44rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0rpx @spacer;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.avatar {
|
|
font-size: 188rpx;
|
|
color: @text-level-3-color;
|
|
height: 200rpx;
|
|
width: 200rpx;
|
|
border-radius: 20rpx;
|
|
margin-top: 20rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.userInfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.btn-view {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |