You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When the tooltip is used in a container element that has position: fixed and is vertically scrollable the tooltip appears in the incorrect position. The bug gets more dramatic the further you scroll down.
Hover the Tooltip text. Tooltip appears in the correct position ✅
Scroll down any amount
Hover the Tooltip text. Tooltip appears further up on the page than before ❌
Continue to scroll down and hover to see the gap grow.
Expected behavior
The tooltip should appear positioned to the right of the Tooltip text at the same height no matter the scroll position and/or container position.
Screenshots
Desktop (please complete the following information):
OS: [macOS]
Browser [chrome, safari, firefox]
Version [3.0.0]
Smartphone (please complete the following information):
n/a: haven't confirm the bug happens on mobile
Device: [e.g. iPhone6]
OS: [e.g. iOS8.1]
Browser [e.g. stock browser, safari]
Version [e.g. 22]
Additional context
It looks like the containerRef.top value shrinks as you scroll down which might be why the distance/offset from the top shrinks as you scroll further.
A work around for this bug is to:
On the parent/wrapping element of the Tooltip set the position: relative attribute
Using a global selector (i.e .your-parent-element-class-or-id :global(.tooltip.animation-null.top)) override the inset property on the tooltip with inset: unset !important
Add top: 0 !important;. This will need to be adjusted depending on the spacing.
The text was updated successfully, but these errors were encountered:
Describe the bug
When the tooltip is used in a container element that has position: fixed and is vertically scrollable the tooltip appears in the incorrect position. The bug gets more dramatic the further you scroll down.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The tooltip should appear positioned to the right of the Tooltip text at the same height no matter the scroll position and/or container position.
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
n/a: haven't confirm the bug happens on mobile
Additional context
It looks like the containerRef.top value shrinks as you scroll down which might be why the distance/offset from the top shrinks as you scroll further.
A work around for this bug is to:
position: relative
attribute.your-parent-element-class-or-id :global(.tooltip.animation-null.top)
) override the inset property on the tooltip withinset: unset !important
top: 0 !important;
. This will need to be adjusted depending on the spacing.The text was updated successfully, but these errors were encountered: