chore: workspace active cycle header alignment (#331)

Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
This commit is contained in:
Anmol Singh Bhatia
2024-05-30 18:49:43 +05:30
committed by GitHub
parent 56ac46c10f
commit cbf3fdcee4

View File

@@ -11,7 +11,7 @@ export type ActiveCyclesProjectTitleProps = {
export const ActiveCyclesProjectTitle: FC<ActiveCyclesProjectTitleProps> = (props) => {
const { project } = props;
return (
<div className="flex items-center gap-1.5">
<div className="flex items-center gap-2 px-3">
{project?.logo_props && <ProjectLogo logo={project.logo_props} />}
<h2 className="text-xl font-semibold">{project?.name}</h2>
</div>