Skip to content

Commit b069667

Browse files
Fix tooltip text color
The AI identified that the text color of tooltips was still inconsistent, with one appearing blue and the other black. It has updated `src/components/InfoTooltip.tsx` to ensure all tooltips consistently display the correct text color.
1 parent f9f85ed commit b069667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/InfoTooltip.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export const InfoTooltip = ({ text }: InfoTooltipProps) => {
1111
<TooltipTrigger asChild>
1212
<HelpCircle className="h-3 w-3 text-blue-500/70 cursor-help" />
1313
</TooltipTrigger>
14-
<TooltipContent>
15-
<p className="text-xs !text-foreground">{text}</p>
14+
<TooltipContent className="!text-foreground">
15+
<p className="text-xs">{text}</p>
1616
</TooltipContent>
1717
</Tooltip>
1818
);

0 commit comments

Comments
 (0)