Changes in Directory card and Notes view at the UI.

This commit is contained in:
Kartik Sharma 2025-11-07 12:34:57 +05:30
parent c3d1b46861
commit 9ef1e39041
2 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ const CardViewContact = ({
(contact?.name || "").trim().split(" ")[1]?.charAt(0) || ""
}
/>{" "}
<span className="text-heading fs-6"> {contact?.name}</span>
<span className="text-heading fs-6 ms-2"> {contact?.name}</span>
</div>
<div>
{IsActive && (

View File

@ -87,7 +87,7 @@ const NoteCardDirectoryEditable = ({
/>
<div>
<div
className="d-flex ms-0 align-middle cursor-pointer"
className="d-flex ms-3 align-middle cursor-pointer"
onClick={() => contactProfile(noteItem.contactId)}
>
<span>
@ -98,7 +98,7 @@ const NoteCardDirectoryEditable = ({
</span>
</div>
<div className="d-flex ms-0 align-middle"></div>
<div className="d-flex ms-0 mt-2">
<div className="d-flex ms-3 mt-2">
<span className="text-muted">
by{" "}
<span className="fw-bold ">
@ -184,7 +184,7 @@ const NoteCardDirectoryEditable = ({
</>
) : (
<div
className="mx-4 px-10 text-start"
className="mx-4 px-11 text-start"
dangerouslySetInnerHTML={{ __html: noteItem.note }}
/>
)}