33 lines
No EOL
513 B
CSS
33 lines
No EOL
513 B
CSS
.user-avatar {
|
|
border-radius: 8px;
|
|
object-fit: cover;
|
|
width: 3em;
|
|
height: 3em;
|
|
}
|
|
|
|
.name-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-left: 0.75em;
|
|
|
|
.identifier {
|
|
font-size: 0.9em;
|
|
text-overflow: ellipsis;
|
|
overflow: clip;
|
|
}
|
|
|
|
flex-shrink: 1;
|
|
min-width: 2rem;
|
|
overflow: clip;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.display-name {
|
|
white-space: wrap;
|
|
text-overflow: ellipsis;
|
|
overflow: clip;
|
|
}
|
|
|
|
.identifier {
|
|
white-space: wrap;
|
|
} |