fix: cycle card title responsiveness added (#2752)

This commit is contained in:
Anmol Singh Bhatia 2023-11-10 18:43:48 +05:30 committed by sriram veeraghanta
parent 942323f81c
commit 5cbec23d5e

View File

@ -152,34 +152,32 @@ export const CyclesBoardCard: FC<ICyclesBoardCard> = (props) => {
<Link href={`/${workspaceSlug}/projects/${projectId}/cycles/${cycle.id}`}> <Link href={`/${workspaceSlug}/projects/${projectId}/cycles/${cycle.id}`}>
<a className="flex flex-col justify-between p-4 h-44 w-full min-w-[250px] text-sm rounded bg-custom-background-100 border border-custom-border-100 hover:shadow-md"> <a className="flex flex-col justify-between p-4 h-44 w-full min-w-[250px] text-sm rounded bg-custom-background-100 border border-custom-border-100 hover:shadow-md">
<div> <div className="flex items-center justify-between gap-2">
<div className="flex items-center justify-between gap-2"> <div className="flex items-center gap-3 truncate">
<div className="flex items-center gap-3"> <span className="flex-shrink-0">
<span className="flex-shrink-0"> <CycleGroupIcon cycleGroup={cycleStatus} className="h-3.5 w-3.5" />
<CycleGroupIcon cycleGroup={cycleStatus} className="h-3.5 w-3.5" /> </span>
<Tooltip tooltipContent={cycle.name} position="top">
<span className="text-base font-medium truncate">{cycle.name}</span>
</Tooltip>
</div>
<div className="flex items-center gap-2">
{currentCycle && (
<span
className="flex items-center justify-center text-xs text-center h-6 w-20 rounded-sm"
style={{
color: currentCycle.color,
backgroundColor: `${currentCycle.color}20`,
}}
>
{currentCycle.value === "current"
? `${findHowManyDaysLeft(cycle.end_date ?? new Date())} ${currentCycle.label}`
: `${currentCycle.label}`}
</span> </span>
<Tooltip tooltipContent={cycle.name} position="top"> )}
<span className="text-base font-medium truncate">{cycle.name}</span> <button onClick={openCycleOverview}>
</Tooltip> <Info className="h-4 w-4 text-custom-text-400" />
</div> </button>
<div className="flex items-center gap-2">
{currentCycle && (
<span
className="flex items-center justify-center text-xs text-center h-6 w-20 rounded-sm"
style={{
color: currentCycle.color,
backgroundColor: `${currentCycle.color}20`,
}}
>
{currentCycle.value === "current"
? `${findHowManyDaysLeft(cycle.end_date ?? new Date())} ${currentCycle.label}`
: `${currentCycle.label}`}
</span>
)}
<button onClick={openCycleOverview}>
<Info className="h-4 w-4 text-custom-text-400" />
</button>
</div>
</div> </div>
</div> </div>