From f2dd59725a6722acdd4153d94819225229cc9c5e Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 24 Nov 2019 00:04:36 -0700 Subject: [PATCH] table width 100 --- .../contributor-yearly-report.component.css | 12 ++++++++++-- .../contributor-yearly-report.component.html | 18 ++++++++++++++---- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.css b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.css index 99aa00a..63b8349 100644 --- a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.css +++ b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.css @@ -14,6 +14,10 @@ height: 300px; } + .w-100 { + width: 100%; + } + .d-block { display: block; } @@ -50,6 +54,10 @@ text-align: right; } + .text-left { + text-align: left; + } + .mt-20 { margin-top: 20px; } @@ -75,11 +83,11 @@ -webkit-print-color-adjust: exact; } - table { + table.borders { border-collapse: collapse; } - table, th, td { + table.borders, table.borders th, table.borders td { border: 1px solid black; } diff --git a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.html b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.html index 00eb475..2cce1a2 100644 --- a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.html +++ b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.html @@ -31,7 +31,7 @@

Registration Code: {{registrationCode}}

- +
@@ -62,15 +62,25 @@ -
{{taxYear}} Giving Summary
+
- + + + + + + - + + + + + +
DateDatePayment TypeCheck NumberFundDescriptionAmount
{{t.date}}{{t.date}}{{t.type === 0 ? 'Cash' : 'Check'}}{{t.checkNumber}}{{t.fund === 0 ? 'General' : 'Missions'}}{{t.description}}{{t.amount | currency}}
\ No newline at end of file