|
|
@@ -87,16 +87,17 @@ const ProjectFinancialCard: React.FC<Props> = ({ |
|
|
|
className="text-xl mt-2 font-medium inline-block" |
|
|
|
style={{ width: "100%", textAlign: "center", color: "#898d8d" }} |
|
|
|
> |
|
|
|
{Title !== t("All Team") ? |
|
|
|
<div className="ml-10 inline-block">{Title}</div> |
|
|
|
{ClickedIndex === Index ? |
|
|
|
<div className="w-full" style={{ overflow: 'hidden' }}> |
|
|
|
<div className=" float-right mt-1 mr-5 text-gray-500"><RadioButtonCheckedIcon /></div></div> |
|
|
|
: |
|
|
|
<div className="ml-10 inline-block mb-7">{Title}</div> |
|
|
|
<div className="w-full" style={{ overflow: 'hidden' }}> |
|
|
|
<div className=" float-right mt-1 mr-5 text-gray-400"><RadioButtonUncheckedIcon /></div></div> |
|
|
|
} |
|
|
|
|
|
|
|
{ClickedIndex === Index ? |
|
|
|
<div className="inline-block float-right mt-1 mr-5 text-gray-500"><RadioButtonCheckedIcon /></div> |
|
|
|
{Title !== t("All Team") ? |
|
|
|
<div className="mb-2">{Title}</div> |
|
|
|
: |
|
|
|
<div className="inline-block float-right mt-1 mr-5 text-gray-400"><RadioButtonUncheckedIcon /></div> |
|
|
|
<div className="mb-9">{Title}</div> |
|
|
|
} |
|
|
|
|
|
|
|
</div> |
|
|
|