active task messaghe

This commit is contained in:
CHIEFSOFT\ameye
2023-07-15 08:55:48 -04:00
parent 481924fa02
commit a9f671eeaa
2 changed files with 13 additions and 3 deletions
@@ -32,7 +32,7 @@ export default function ActiveJobMessage({ activeJobMesList }) {
{currentActiveJobMesList.map((item, index) => ( {currentActiveJobMesList.map((item, index) => (
<tr key={index} className='text-slate-500'> <tr key={index} className='text-slate-500'>
<td> <td>
<div className="msg_box"> <div className={`msg_box ${item.who}`}>
<div className="msg_header">{item.msg_date} {item.msg_firstname}</div> <div className="msg_header">{item.msg_date} {item.msg_firstname}</div>
<span className="p-2" dangerouslySetInnerHTML={{__html: item.message}}></span> <span className="p-2" dangerouslySetInnerHTML={{__html: item.message}}></span>
</div> </div>
+12 -2
View File
@@ -11,6 +11,14 @@
font-family: "Product Sans"; font-family: "Product Sans";
src: url("./assets/fonts/Product Sans Bold.ttf"); src: url("./assets/fonts/Product Sans Bold.ttf");
} }
.SENDER{
margin-left: 60px !important;
background-color: azure;
}
.RECIPIENT{
margin-right: 60px !important;
background-color: lightblue;
}
.wallet-box{ .wallet-box{
background-color: aliceblue; background-color: aliceblue;
border-radius: 20px; border-radius: 20px;
@@ -47,9 +55,11 @@
border-radius: 15px; border-radius: 15px;
} }
.msg_header{ .msg_header{
background-color: #1a3544; background-color: white;
color: white; color: black;
font-weight: bold; font-weight: bold;
border-radius: 9px;
font-family: Circular, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
} }
.siderCardDescription{ .siderCardDescription{
background-color: aliceblue; background-color: aliceblue;