[email protected]If possible, link to a minimal repro (fork this code sandbox): https://codesandbox.io/s/stoic-meitner-ymv8s
The .primary-items div contains overflow: auto. This is so the top group will scroll if a user shrinks their browser to a small enough view port. If I remove this div, the tooltips behave fine, as can be seen with the expand icon at the bottom.
Can you try messing around with the popper.js modifiers? There are a few layout things going on in your example with position: fixed on sidebar and overflow: hidden on body... which might be preventing the positioning algorithm from working
@adidahiya You rock! Adding the following solves it:
modifiers={{
preventOverflow: { enabled: false },
flip: { enabled: false }
}}
The preview has been updated to show this. I left the top one "broken", and added a few below with the fix to demonstrate so others can see.
Most helpful comment
@adidahiya You rock! Adding the following solves it:
The preview has been updated to show this. I left the top one "broken", and added a few below with the fix to demonstrate so others can see.