Skip to content

Commit

Permalink
Explicitly set margin to something slightly higher than the default (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
allthesignals authored Oct 8, 2024
1 parent c9af7fd commit 5261c24
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/app/controllers/cbv/summaries_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ def show
render pdf: "#{@cbv_flow.id}",
layout: "pdf",
locals: { is_caseworker: Rails.env.development? && params[:is_caseworker] },
footer: { right: "Income Verification Report | Page [page] of [topage]", font_size: 10 }
footer: { right: "Income Verification Report | Page [page] of [topage]", font_size: 10 },
margin: {
top: 12,
bottom: 12,
left: 12,
right: 12
}
end
end
end
Expand Down

0 comments on commit 5261c24

Please sign in to comment.