summaryrefslogtreecommitdiff
path: root/src/lib/invoice/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/invoice/components')
-rw-r--r--src/lib/invoice/components/Invoice.jsx2
-rw-r--r--src/lib/invoice/components/Invoices.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/invoice/components/Invoice.jsx b/src/lib/invoice/components/Invoice.jsx
index 6012e4ea..1094e2e4 100644
--- a/src/lib/invoice/components/Invoice.jsx
+++ b/src/lib/invoice/components/Invoice.jsx
@@ -167,7 +167,7 @@ const Invoice = ({ id }) => {
{invoice.data?.efaktur ? (
<button
type='button'
- className='inline-block text-red_r-11'
+ className='inline-block text-danger-500'
onClick={() => downloadTaxInvoice(invoice?.data)}
>
Download
diff --git a/src/lib/invoice/components/Invoices.jsx b/src/lib/invoice/components/Invoices.jsx
index 51041316..6f7d54a0 100644
--- a/src/lib/invoice/components/Invoices.jsx
+++ b/src/lib/invoice/components/Invoices.jsx
@@ -80,7 +80,7 @@ const Invoices = () => {
<div className='grid grid-cols-2'>
<Link href={`/my/invoice/${invoice.id}`}>
<span className='text-caption-2 text-gray_r-11'>No. Invoice</span>
- <h2 className='text-red_r-11 mt-1'>{invoice.name}</h2>
+ <h2 className='text-danger-500 mt-1'>{invoice.name}</h2>
</Link>
<div className='flex gap-x-1 justify-end'>
{invoice.amountResidual > 0 ? (