Address field label is breaking into multiple lines in Employee Profile tab

This commit is contained in:
Kartik Sharma 2025-09-09 18:10:23 +05:30 committed by pramod.mahajan
parent d87defbf9a
commit b50b6bc454

View File

@ -143,12 +143,13 @@ const EmpOverview = ({ profile }) => {
{/* Address */}
<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>
<span>Address</span>
<span className="text-nowrap">Address</span>
</span>
<span style={{ marginLeft: "86px" }}>:</span>
<span className="ms-5">
<span className="ms-5" style={{ marginRight: "75px" }}>
{profile?.currentAddress || <em>NA</em>}
</span>
</div>