fix: cycle list item fix

This commit is contained in:
anmolsinghbhatia 2023-06-29 18:20:22 +05:30
parent f2a4e026a5
commit d8eeb9e17a

View File

@ -172,17 +172,19 @@ export const SingleCycleList: React.FC<TSingleStatProps> = ({
: "" : ""
}`} }`}
/> />
<div> <div className="max-w-2xl">
<Tooltip <Tooltip
tooltipContent={cycle.name} tooltipContent={cycle.name}
className="break-words" className="break-words"
position="top-left" position="top-left"
> >
<h3 className="break-words text-base font-semibold"> <h3 className="break-words w-full text-base font-semibold">
{truncateText(cycle.name, 70)} {truncateText(cycle.name, 70)}
</h3> </h3>
</Tooltip> </Tooltip>
<p className="mt-2 text-brand-secondary">{cycle.description}</p> <p className="mt-2 text-brand-secondary break-words w-full">
{cycle.description}
</p>
</div> </div>
</span> </span>
<span className="flex items-center gap-4 capitalize"> <span className="flex items-center gap-4 capitalize">