make the score improvement text smaller and show a previous pp inaccuracy warning
All checks were successful
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m21s

This commit is contained in:
Lee
2024-10-23 08:13:07 +01:00
parent 8090361615
commit 08295d7b04
8 changed files with 74 additions and 20 deletions

View File

@ -48,7 +48,9 @@ export default function Tooltip({ children, display, asChild = true, side = "top
{children}
</button>
</TooltipTrigger>
<TooltipContent side={side}>{display}</TooltipContent>
<TooltipContent className="max-w-[350px]" side={side}>
{display}
</TooltipContent>
</ShadCnTooltip>
);
}