fix: Avatars should overlap in document header

This commit is contained in:
Tom Moor 2019-08-05 21:10:44 -07:00
parent fb4f6822a4
commit 38a67b1f9e
1 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ type Props = {
placement?: 'top' | 'bottom' | 'left' | 'right',
children: React.Node,
delay?: number,
className?: string,
};
class Tooltip extends React.Component<Props> {
@ -16,7 +17,7 @@ class Tooltip extends React.Component<Props> {
}
render() {
const { tooltip, delay = 50, children, ...rest } = this.props;
const { tooltip, delay = 50, children, className, ...rest } = this.props;
return (
<StyledTippy
@ -29,7 +30,7 @@ class Tooltip extends React.Component<Props> {
inertia
{...rest}
>
<span>{children}</span>
<span className={className}>{children}</span>
</StyledTippy>
);
}