diff --git a/src/components/CategoryPillComponent.tsx b/src/components/CategoryPillComponent.tsx index 7d46d0aa..a008e396 100644 --- a/src/components/CategoryPillComponent.tsx +++ b/src/components/CategoryPillComponent.tsx @@ -140,16 +140,17 @@ class CategoryPillComponent extends React.Component #container") as HTMLElement; + const tooltipMount = document.querySelector("#above-the-fold") as HTMLElement; if (tooltipMount) { this.tooltip = new Tooltip({ text: this.getTitleText(), referenceNode: tooltipMount, - bottomOffset: "70px", + bottomOffset: "0px", opacity: 0.95, displayTriangle: false, showLogo: false, - showGotIt: false + showGotIt: false, + prependElement: tooltipMount.firstElementChild as HTMLElement }); } }