Fix facepile styling

This commit is contained in:
Robert Long 2021-10-22 10:46:34 -07:00
parent 27e2ab16f3
commit d53475662b
2 changed files with 2 additions and 0 deletions

View file

@ -12,6 +12,7 @@ export function Facepile({ participants }) {
>
{participants.map((member) => (
<div
key={member.userId}
className={styles.avatar}
style={{ backgroundColor: colorHash.hex(member.name) }}
>

View file

@ -1,4 +1,5 @@
.facepile {
display: flex;
margin: 0 16px;
}