Skip to content

Commit

Permalink
fix: increase whitespace between mean and median charts (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
banders committed May 16, 2024
1 parent c717666 commit 2759c94
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions doc-gen-service/src/templates/report-template-header.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,14 @@
margin-top: 16px !important;
}

.pay-transparency-report .ps-2 {
padding-left: 8px !important;
}

.pay-transparency-report .pe-2 {
padding-right: 8px !important;
}

.pay-transparency-report .pe-4 {
padding-right: 16px !important;
}
Expand Down
2 changes: 1 addition & 1 deletion doc-gen-service/src/templates/report.script.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ function horizontalStackedBarChart(data, numberFormat = '1.0f') {
function horizontalBarChart(data, numberFormat = '$0.2f') {
const barHeight = 37;
const marginTop = 0;
const marginRight = 110;
const marginRight = 122;
const marginBottom = 10;
const marginLeft = 0;
const width = 350;
Expand Down

0 comments on commit 2759c94

Please sign in to comment.