1.ant-tooltip-inner {
2 color: yellow;
3 background-color: green;
4 width: 200px;
5}
6// for React-JSS
7<ToolTip overlayClassName="toolTipOverlay" {...props} >Content</ToolTip>
8
9JSS style Object = {
10 toolTipOverlay: {
11 '& .ant-tooltip-inner': {
12 width: 'max-content';
13 }
14 }
15}