diff --git a/app/assets/stylesheets/tables-report.css.scss b/app/assets/stylesheets/tables-report.css.scss index ae41e6573aa..90ed7f376e8 100644 --- a/app/assets/stylesheets/tables-report.css.scss +++ b/app/assets/stylesheets/tables-report.css.scss @@ -8,6 +8,26 @@ @forward 'usa-table'; @forward 'usa-alert'; +.bg-secondary { + @include u-bg('secondary'); +} + +.margin-bottom-4 { + @include u-margin-bottom(4); +} + +.margin-top-4 { + @include u-margin-top(4); +} + +.height-05 { + @include u-height(0.5); +} + +.border-transparent { + @include u-border-color('transparent'); +} + .report-title, .report-subtitle { color: color('primary-darker'); diff --git a/app/views/report_mailer/tables_report.html.erb b/app/views/report_mailer/tables_report.html.erb index 67332696fc0..f102bfea68c 100644 --- a/app/views/report_mailer/tables_report.html.erb +++ b/app/views/report_mailer/tables_report.html.erb @@ -2,6 +2,15 @@ - @message: text to put in the beginning of the email - @reports: an array of EmailableReport %> +
+ <%= image_tag( + asset_url('email/logo.png'), + alt: APP_NAME, + width: 155, + height: 21, + ) %> +
+
<%= @message %>
<% @reports.each do |report| %> <% header, *rows = report.table %> @@ -38,3 +47,4 @@ <% end %> +