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) || "" (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>
<div> <div>
{IsActive && ( {IsActive && (

View File

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