Skip to content

Commit

Permalink
fix: Increase bottom margin to prevent x-axis labels from being cut off
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Nov 27, 2024
1 parent 78b6b00 commit 3832ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hugo-site/static/js/small-world-scale.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ waitForD3().then(() => {
}

function updateChart() {
const margin = {top: 20, right: 20, bottom: 40, left: 40};
const margin = {top: 20, right: 20, bottom: 50, left: 40};
const chartWidth = width - margin.left - margin.right;
const chartHeight = height - margin.top - margin.bottom;

Expand Down

0 comments on commit 3832ffa

Please sign in to comment.