Sizing for the projects directory has been corrected.

This commit is contained in:
Kartik sharma 2025-07-09 10:20:32 +05:30 committed by pramod mahajan
parent 117dae81e4
commit b659dbd9ea
2 changed files with 20 additions and 7 deletions

View File

@ -836,7 +836,7 @@ progress {
} }
.row { .row {
--bs-gutter-x: 1.625rem; --bs-gutter-x: 3.625rem;
--bs-gutter-y: 0; --bs-gutter-y: 0;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;

View File

@ -81,9 +81,22 @@ const ProjectDetails = () => {
switch (activePill) { switch (activePill) {
case "profile": { case "profile": {
return ( return (
<div className="row"> <>
<div className="col-xl-4 col-lg-5 col-md-5 mt-5"> <div className="row ">
<AboutProject ></AboutProject> <div className="col-lg-4 col-md-5 mt-5">
{/* About User */}
<AboutProject data={projectDetails}></AboutProject>
<ProjectOverview project={projectId} />
{/* About User */}
</div>
<div className="col-lg-8 col-md-5 mt-5">
{/* Profile Overview */}
<ProjectProgressChart
ShowAllProject="false"
DefaultRange="1M"
/>
{/* Profile Overview */}
</div>
</div> </div>
<div className="col-xl-4 col-lg-5 col-md-5 mt-5"> <div className="col-xl-4 col-lg-5 col-md-5 mt-5">
<ProjectOverview project={projectId} /> <ProjectOverview project={projectId} />
@ -123,8 +136,8 @@ const ProjectDetails = () => {
} }
case "directory": { case "directory": {
return ( return (
<div className="row"> <div className="row mt-2">
<Directory IsPage={false} prefernceContacts={projects_Details.id} /> <Directory IsPage={false} prefernceContacts={projectDetails.id} />
</div> </div>
); );
} }
@ -164,7 +177,7 @@ const ProjectDetails = () => {
]} ]}
></Breadcrumb> ></Breadcrumb>
<div className="row"> <div className="row ">
{projectLoading && <p>Loading....</p>} {projectLoading && <p>Loading....</p>}
{/* {!projectLoading && project && ( {/* {!projectLoading && project && (
<ProjectBanner project_data={project}></ProjectBanner> <ProjectBanner project_data={project}></ProjectBanner>