Added Document Managment feature #388

Merged
pramod.mahajan merged 124 commits from Document_Manag into main 2025-09-10 14:34:35 +00:00
Showing only changes of commit 1ff1bc9269 - Show all commits

View File

@ -142,13 +142,14 @@ const EmpOverview = ({ profile }) => {
</div> </div>
{/* Address */} {/* Address */}
<div className="d-flex align-items-start"> <div className="d-flex align-items-start">
<span className="d-flex"> <span className="d-flex align-items-center">
<i className="bx bx-map bx-xs me-2 mt-1"></i> <i className="bx bx-map bx-xs me-2 mt-1"></i>
<span>Address</span> <span className="text-nowrap">Address</span>
</span> </span>
<span style={{ marginLeft: "86px" }}>:</span> <span style={{ marginLeft: "86px" }}>:</span>
<span className="ms-5"> <span className="ms-5" style={{ marginRight: "75px" }}>
{profile?.currentAddress || <em>NA</em>} {profile?.currentAddress || <em>NA</em>}
</span> </span>
</div> </div>