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
🛠️ Tooltip Direction Fix (XS Screen)
The tooltip on nav buttons using labelDirection === "left" with right-full was overflowing off-screen on extra small (XS) devices. Also, using mx-2 caused misalignment issues.
✅ Fix:
Replaced mx-2 with directional margins (ml-2 / mr-2) based on tooltip side.
Added max-xs:left-full for better responsive behavior.
Included z-50 to keep tooltip above other UI layers.
Verified Tailwind theme tokens for bg-background and text-foreground.
Next.js-Creative-Portfolio-Website/src/components/navigation/NavButton.jsx
Line 109 in f7e9ee1
The left-full in the className string is overriding the conditional labelDirection. To fix just remove left-full from line 109.
The text was updated successfully, but these errors were encountered: