From 62f5542ef21485252dd3479f8d906bea94d3b910 Mon Sep 17 00:00:00 2001 From: kitos Date: Tue, 2 Jun 2026 10:45:11 +0200 Subject: [PATCH] fix(status-badge): show tooltip below badge (not above) to prevent clipping --- frontend/src/components/StatusBadge.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/StatusBadge.tsx b/frontend/src/components/StatusBadge.tsx index 52d51ff..215224e 100644 --- a/frontend/src/components/StatusBadge.tsx +++ b/frontend/src/components/StatusBadge.tsx @@ -93,16 +93,18 @@ export default function StatusBadge({ status, className = "", size = "md" }: Sta {BADGE_LABELS[status]} - {/* Tooltip — appears above the badge on hover */} + {/* Tooltip — appears below the badge on hover */} + {/* Arrow pointing up */} +

{tip.heading}

{tip.lines.map(({ label, text }) => (
@@ -112,8 +114,6 @@ export default function StatusBadge({ status, className = "", size = "md" }: Sta

{text}

))} - {/* Arrow pointing down */} -
);