List page

This commit is contained in:
CHIEFSOFT\ameye
2023-06-03 22:56:27 -04:00
parent 8765329256
commit acdf167a69
3 changed files with 240 additions and 898 deletions
File diff suppressed because it is too large Load Diff
@@ -31,7 +31,13 @@ export default function ActiveJobMessage({ activeJobMesList }) {
<tbody>
{currentActiveJobMesList.map((item, index) => (
<tr key={index} className='text-slate-500'>
<td className="p-2" dangerouslySetInnerHTML={{__html: item.message}}></td>
<td>
<div className="msg_box">
<div className="msg_header">{item.msg_date} {item.msg_firstname}</div>
<span className="p-2" dangerouslySetInnerHTML={{__html: item.message}}></span>
</div>
</td>
</tr>
))}
</tbody>
+11
View File
@@ -9,6 +9,17 @@
font-family: "Product Sans";
src: url("./assets/fonts/Product Sans Bold.ttf");
}
.msg_box{
background-color: aliceblue;
margin: 5px;
padding: 5px;
border-radius: 15px;
}
.msg_header{
background-color: #1a3544;
color: white;
font-weight: bold;
}
.siderCardHeader{
margin: 40px 40px 10px 40px;
font-size: 24px;