1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00

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

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>