fix: remove custom tooltip styling, use standard TooltipContent defaults

The RowTooltip wrapped its label in a font-mono text-stat-value span
instead of using the TooltipContent base styling (text-xs
text-popover-foreground) like every other tooltip in the app.
This commit is contained in:
SaelixCode
2026-07-03 14:28:10 -04:00
parent ff98eb3cd8
commit 209fbd2742
+1 -1
View File
@@ -38,7 +38,7 @@ function RowTooltip({ trigger, label }: { trigger: ReactNode; label: string }) {
<Tooltip>
<TooltipTrigger asChild>{trigger}</TooltipTrigger>
<TooltipContent side="bottom" sideOffset={4} align="center">
<span className="font-mono text-xs tabular-nums text-stat-value">{label}</span>
{label}
</TooltipContent>
</Tooltip>
</TooltipProvider>