@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;
        }
    }
}
