66 lines
1.0 KiB
Plaintext
66 lines
1.0 KiB
Plaintext
/** index.wxss **/
|
|
@import "../../../styles/cell.less";
|
|
|
|
.page-body {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
background-color: @background-color-base;
|
|
}
|
|
|
|
.user-list {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.user-info {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
padding-left: 22rpx;
|
|
flex: 1;
|
|
}
|
|
|
|
.user-state {
|
|
margin-right: 20rpx;
|
|
padding: 10rpx;
|
|
font-size: @size-font-small;
|
|
color: white;
|
|
align-self: flex-start;
|
|
&-shadow:extend(.user-state) {
|
|
background-color: @warning-color;
|
|
}
|
|
&-normal:extend(.user-state) {
|
|
background-color: @success-color;
|
|
}
|
|
&-disabled:extend(.user-state) {
|
|
background-color: @error-color;
|
|
}
|
|
}
|
|
|
|
.avatar {
|
|
font-size: 128rpx;
|
|
color: @text-color;
|
|
height: 140rpx;
|
|
width: 140rpx;
|
|
border-radius: 14rpx;
|
|
}
|
|
|
|
.nickname {
|
|
font-size: 44rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.name {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: @size-font-base;
|
|
}
|
|
|
|
.mobile {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: @size-font-base;
|
|
}
|