diff --git a/frontend/components/Collaborators/Collaborators.js b/frontend/components/Collaborators/Collaborators.js index ae62fd1b..8bb7c788 100644 --- a/frontend/components/Collaborators/Collaborators.js +++ b/frontend/components/Collaborators/Collaborators.js @@ -25,15 +25,20 @@ const Collaborators = function({ document }: { document: Document }) { return ( - + {collaborators.map(user => ( ))} - + ); }; +const StyledTooltip = styled(Tooltip)` + display: flex; + flex-direction: row-reverse; +`; + const Avatars = styled(Flex)` flex-direction: row-reverse; height: 26px; @@ -45,7 +50,7 @@ const Avatar = styled.img` flex-shrink: 0; border-radius: 50%; border: 2px solid ${color.white}; - margin-right: -13px; + margin-right: -10px; &:first-child { margin-right: 0;