31 lines
588 B
CSS
31 lines
588 B
CSS
/* MessageAvatar 头像样式 */
|
|
|
|
.avatar {
|
|
flex: 0 0 auto;
|
|
width: 43px;
|
|
height: 43px;
|
|
border-radius: 9999px;
|
|
overflow: hidden;
|
|
border: 2px solid var(--color-avatar-border, #fbf3f5);
|
|
box-shadow: var(--shadow-input-box, 0 1px 2px rgba(0, 0, 0, 0.1));
|
|
background: var(--color-avatar-border, #fbf3f5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.placeholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
}
|