Skip to content

Commit

Permalink
1250: Add right margin for Resource Access percentages (#1562)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydonkrooss committed Jan 26, 2024
1 parent 2e98435 commit a73f8d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/src/components/d3/createResourceAccessChart.js
Expand Up @@ -122,11 +122,11 @@ function createResourceAccessChart ({ data, width, height, domElement }) {
mainMargin.top = miniMargin.top, mainHeight = miniHeight, mainMargin.bottom = miniMargin.bottom
*/

const mainWidth = availWidth * 0.55
const mainWidth = availWidth * 0.525
const mainHeight = availHeight * 0.7
const mainMargin = {
top: availHeight * 0.15,
right: 0,
right: availWidth * 0.025,
bottom: availHeight * 0.15,
left: availWidth * 0.225
}
Expand Down

0 comments on commit a73f8d2

Please sign in to comment.