diff --git a/server.js b/server.js
index 0b7bd0c..aba5ec5 100644
--- a/server.js
+++ b/server.js
@@ -1230,13 +1230,13 @@ app.get('/api/quotes/:id/pdf', async (req, res) => {
// Totals
itemsHTML += `
`;
if (!quote.tax_exempt) {
itemsHTML += `
`;
}
@@ -1352,13 +1352,13 @@ app.get('/api/invoices/:id/pdf', async (req, res) => {
itemsHTML += `
`;
if (!invoice.tax_exempt) {
itemsHTML += `
`;
}
@@ -1367,19 +1367,19 @@ app.get('/api/invoices/:id/pdf', async (req, res) => {
itemsHTML += `
`;
if (amountPaid > 0) {
itemsHTML += `
`;
}
@@ -1490,13 +1490,13 @@ app.get('/api/quotes/:id/html', async (req, res) => {
itemsHTML += `
`;
if (!quote.tax_exempt) {
itemsHTML += `
`;
}
@@ -1595,13 +1595,13 @@ app.get('/api/invoices/:id/html', async (req, res) => {
itemsHTML += `
`;
if (!invoice.tax_exempt) {
itemsHTML += `
`;
}
@@ -1610,19 +1610,19 @@ app.get('/api/invoices/:id/html', async (req, res) => {
itemsHTML += `
`;
if (amountPaid > 0) {
itemsHTML += `
`;
}
diff --git a/templates/invoice-template.html b/templates/invoice-template.html
index be5705e..d81e2c2 100644
--- a/templates/invoice-template.html
+++ b/templates/invoice-template.html
@@ -179,24 +179,6 @@
}
.total-label {
- text-align: right;
- font-size: 16px;
- font-weight: bold;
- padding-right: 20px !important;
- }
- .subtotal-label {
- text-align: right;
- font-size: 14px;
- font-weight: bold;
- padding-right: 20px !important;
- }
- .tax-label {
- text-align: right;
- font-size: 14px;
- font-weight: bold;
- padding-right: 20px !important;
- }
- .downpayment-label {
text-align: right;
font-size: 14px;
font-weight: bold;
diff --git a/templates/quote-template.html b/templates/quote-template.html
index 4637c53..9932192 100644
--- a/templates/quote-template.html
+++ b/templates/quote-template.html
@@ -175,24 +175,6 @@
}
.total-label {
- text-align: right;
- font-size: 16px;
- font-weight: bold;
- padding-right: 20px !important;
- }
- .subtotal-label {
- text-align: right;
- font-size: 14px;
- font-weight: bold;
- padding-right: 20px !important;
- }
- .tax-label {
- text-align: right;
- font-size: 14px;
- font-weight: bold;
- padding-right: 20px !important;
- }
- .downpayment-label {
text-align: right;
font-size: 14px;
font-weight: bold;