fix parts

This commit is contained in:
CHIEFSOFT\ameye
2025-11-02 11:46:29 -05:00
parent d5cd2a6360
commit 2852d5654e
5 changed files with 110 additions and 85 deletions
@@ -43,10 +43,10 @@ export default function TransactionDetails({transactionID}) {
Account
</th>
<th scope="col" className="px-2">
Activity
Customer
</th>
<th scope="col" className="px-2 text-right">
Action
Channel
</th>
</tr>
</thead>
@@ -70,18 +70,11 @@ export default function TransactionDetails({transactionID}) {
</td>
<td className="px-2">
<div className="text-left">
<div className="font-normal text-gray-500">50%</div>
<div className="relative h-[6px] w-full bg-white-body dark:bg-black-body rounded-full overflow-hidden">
<div className={`absolute left-0 h-full w-1/2 bg-emerald-600`}></div>
</div>
<div className="text-base font-semibold">{item?.customer_id}</div>
</div>
</td>
<td className="px-2 text-right">
<div className='flex items-center justify-end gap-3 md:gap-4'>
<div className='p-2 flex justify-center items-center text-slate-500 bg-white-body dark:text-white-body dark:bg-black-body rounded-md'>
<Icons name='eye' />
</div>
</div>
<div className="text-base font-semibold">{item?.channel}</div>
</td>
</tr>
))