chore: app sidebar emoji and icon consisteny

This commit is contained in:
Anmol Singh Bhatia
2024-05-08 15:22:44 +05:30
parent b8f1734738
commit a488a3411c

View File

@@ -226,7 +226,10 @@ export const ProjectSidebarListItem: React.FC<Props> = observer((props) => {
})}
>
<div className="h-7 w-7 grid place-items-center flex-shrink-0">
<ProjectLogo logo={project.logo_props} />
<ProjectLogo
logo={project.logo_props}
className={`${project.logo_props.in_use === "icon" ? "text-[18px]" : ""}`}
/>
</div>
{!isCollapsed && <p className="truncate text-custom-sidebar-text-200">{project.name}</p>}
</div>