I am currently working with a tooltip created using the @material-ui/core/Tooltip
library, and it is functioning correctly. You can see an example of the tooltip in action at this link: https://codesandbox.io/s/kgccc
.
https://i.stack.imgur.com/fMgGb.png
Due to the abundance of content within the tooltip, I have implemented a scroll feature:
.tooltip-popup-details{
height: 300px;
overflow: auto;
}
However, I have encountered an issue where attempting to scroll within the tooltip causes the entire page to scroll instead. I have tried various troubleshooting methods without success. It seems that dragging or scrolling inside the tooltip itself is not functioning as intended. Any assistance would be greatly appreciated.