Add extra spacing in Infra Work details.

This commit is contained in:
Kartik Sharma 2025-09-26 11:25:36 +05:30 committed by pramod.mahajan
parent 3f4b7d08d4
commit 7455d8a221

View File

@ -82,8 +82,7 @@ const WorkArea = ({ workArea, floor, forBuilding }) => {
aria-controls={`collapse-${workArea.id}`}
>
<i
className={`bx me-2 toggle-icon ${
IsExpandedArea ? "bx-minus-circle" : "bx-plus-circle"
className={`bx me-2 toggle-icon ${IsExpandedArea ? "bx-minus-circle" : "bx-plus-circle"
}`}
style={{
fontSize: "1.2rem",
@ -109,7 +108,7 @@ const WorkArea = ({ workArea, floor, forBuilding }) => {
<ProgressBar
completedWork={formatNumber(workArea?.completedWork)}
plannedWork={formatNumber(workArea?.plannedWork)}
className="m-0 text-info"
className="m-0 my-2 me-6 text-info"
/>
</div>
</div>
@ -121,7 +120,7 @@ const WorkArea = ({ workArea, floor, forBuilding }) => {
className="accordion-collapse collapse"
aria-labelledby={`heading-${workArea.id}`}
>
<div className="accordion-body px-1">
<div className="accordion-body px-6">
{isLoading || ProjectTaskList === undefined ? (
<div className="text-center py-2 text-muted">Loading activities...</div>
) : ProjectTaskList?.length === 0 ? (