diff options
| -rw-r--r-- | src/lib/quotation/components/Quotationheader.jsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/quotation/components/Quotationheader.jsx b/src/lib/quotation/components/Quotationheader.jsx index 9f0f17a6..c9686b5a 100644 --- a/src/lib/quotation/components/Quotationheader.jsx +++ b/src/lib/quotation/components/Quotationheader.jsx @@ -184,26 +184,26 @@ const Quotationheader = (quotationCount) => { qotation?.map((product, index) => ( <> <li className='py-1 sm:py-2'> - <div className='flex justify-between border p-1 flex-col gap-y-2'> + <div className='flex justify-between border p-2 flex-col gap-y-2'> <div className='flex justify-between'> - <p className='tanggal text-base'>{product.dateOrder}</p> - <p className='badge-red h-fit md:text-caption-2 whitespace-nowrap'>Pending Quotation</p> + <p className='tanggal text-xs'>{product.dateOrder}</p> + <p className='badge-red h-fit md:text-caption-1 whitespace-nowrap'>Pending Quotation</p> </div> <div className='bagian tengah flex justify-between'> <div className='no transaksi '> - <p className='text-base'> + <p className='text-xs'> No. Transaksi </p> - <p className='font-semibold text-red-500'> + <Link href='/my/quotations' className='font-semibold text-sm text-red-500'> {product.name} - </p> + </Link> </div> <div className='purchase'> - <p className='text-base'> + <p className='text-xs'> No. Purchase Order </p> <p className='font-semibold text-red-500'> - {product.purchaseOrderFile} + {product.purchaseOrderFile ? product.purchaseOrderFile : '-'} </p> </div> </div> |
