@nodeject/ui-components
Version:
UI library for non-trivial components
19 lines (15 loc) • 458 B
text/less
@listOverlap: 10px;
.avatarListWrapper {
display: flex;
background-color: inherit;
.avatarList {
background-color: inherit;
display: flex;
flex-direction: row-reverse; // allows to show first showing avatars on top of followers, etc.
justify-content: flex-end;
margin-left: @listOverlap;
& > * { // :not(:last-of-type)
margin-left: -@listOverlap;
}
}
}