Files
Smart-Farm/uniapp/uni-app/styles/avatar.scss
2025-12-22 17:13:05 +08:00

85 lines
1.1 KiB
SCSS

/* 头像 */
.avatar {
margin: 0;
padding: 0;
display: inline-flex;
text-align: center;
justify-content: center;
align-items: center;
color: #fff;
white-space: nowrap;
position: relative;
width: 130rpx;
height: 130rpx;
background-size: cover;
background-position: center;
vertical-align: middle;
}
.avatar.big {
width: 160rpx;
height: 160rpx;
}
.avatar.lg {
width: 100rpx;
height: 100rpx;
}
.avatar.md {
width: 90rpx;
height: 90rpx;
}
.avatar.sm {
width: 80rpx;
height: 80rpx;
}
.avatar.mini {
width: 66rpx;
height: 66rpx;
}
.avatar-group {
width: 46rpx;
height: 48rpx;
direction: ltl;
unicode-bidi: bidi-override;
display: inline-block;
}
.avatar-group .avatar {
width: 48rpx;
height: 48rpx;
font-size: 1em;
border-radius: 50%;
border: 1rpx solid white;
transform: rotateZ(360deg);
vertical-align: middle;
}
.avatar-group.md {
width: 58rpx;
height: 60rpx;
}
.avatar-group.md .avatar {
width: 60rpx;
height: 60rpx;
}
.avatar-group.lg {
width: 82rpx;
height: 92rpx;
}
.avatar-group.lg .avatar {
width: 92rpx;
height: 92rpx;
}
.avatar-group .avatar:nth-child(1) {
margin-left: 0rpx;
}