28 lines
701 B
CSS
28 lines
701 B
CSS
.avatar {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
vertical-align: middle;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
width: 35px;
|
|
height: 35px;
|
|
border-radius: 100%;
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.avatarInitialsText {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--Theme-Primary-Dark-Surface-Normal);
|
|
color: var(--Theme-Primary-Dark-On-Surface-Text);
|
|
font-size: var(--typography-Caption-Bold-fontSize);
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
font-weight: var(--typography-Caption-Bold-fontWeight);
|
|
line-height: 150%;
|
|
letter-spacing: 0.096px;
|
|
}
|