15 lines
282 B
CSS
15 lines
282 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(--UI-Grey-40);
|
|
}
|
|
|
|
.initials {
|
|
background-color: var(--Base-Icon-Low-contrast);
|
|
}
|