updating tooltip component to take style props in css

This commit is contained in:
Alex Windett 2017-01-24 11:03:33 +00:00
parent 019ecd4d96
commit 16482ece37
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,8 @@ const StyledList = styled.ul`
margin: 0;
padding: ${remcalc(ulPadder)};
min-width: ${remcalc(200)};
${props => props.style}
${baseBox()}
@ -79,6 +81,7 @@ module.exports = ({
<StyledList
arrowPosition={arrowPosition}
className={className}
style={style}
>
{children}
</StyledList>