added styling and table rows for 'Not Paid' order confirmation'

This commit is contained in:
lauriejefferson
2023-06-21 17:22:12 -04:00
parent f6db69104f
commit d3dba87ca1
2 changed files with 12 additions and 0 deletions

View File

@@ -23,6 +23,13 @@
= t :order_total_price
%td.text-right.total
%h5#order_total= order.display_total.to_html
%tr.total
%td.text-right{colspan: "3"}
%h5.not-paid
= t :order_balance_due
%td.text-right.total.not-paid
%h5#order_balance
- if order.total_tax > 0
#tax

View File

@@ -108,3 +108,8 @@ checkout {
}
}
}
.not-paid {
color: #f40f0f;
font-weight: 700;
}