29 lines
421 B
SCSS
29 lines
421 B
SCSS
.user-info {
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
padding: 16px 18px;
|
|
}
|
|
|
|
.user-info-title {
|
|
font-size: $uni-font-size-lg;
|
|
font-weight: 600;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.user-info-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.label {
|
|
font-size: $uni-font-size-base;
|
|
color: #666;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.value {
|
|
font-size: $uni-font-size-base;
|
|
color: $uni-text-color;
|
|
}
|