17 lines
342 B
CSS
17 lines
342 B
CSS
.avatar {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
border-radius: var(--Corner-radius-Rounded);
|
|
width: 2rem;
|
|
height: 2rem;
|
|
background-color: var(--Main-Grey-40);
|
|
}
|
|
|
|
.initials {
|
|
font-size: 0.75rem;
|
|
color: var(--Base-Text-Inverted);
|
|
background-color: var(--Base-Icon-Low-contrast);
|
|
}
|