Skip to content

Commit 20f3ddc

Browse files
Fix tooltip text color
Ensure consistent text color for all tooltips by applying the correct styling.
1 parent cfad77e commit 20f3ddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/InfoTooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const InfoTooltip = ({ text }: InfoTooltipProps) => {
1212
<HelpCircle className="h-3 w-3 text-blue-500/70 cursor-help" />
1313
</TooltipTrigger>
1414
<TooltipContent>
15-
<p className="text-xs">{text}</p>
15+
<p className="text-xs text-foreground">{text}</p>
1616
</TooltipContent>
1717
</Tooltip>
1818
);

0 commit comments

Comments
 (0)