Hi everybody
I was wondering how to style the tooltip, preferrably with styled components. It should have a white background and black font color. The text should spread over 3 lines and the tooltip should have a drop shadow.
But this looks not at all what I expect.
const StyledTooltip = styled(Tooltip)`
background
:
white
;
color
:
black
;
height
:
116px
;
`;
I don't need a full solution, but a hint, how to style the tooltip.
Thanks in advance
Lukas