diff --git a/app/components/BubbleChart.jsx b/app/components/BubbleChart.jsx index 12bee50..92ffff4 100644 --- a/app/components/BubbleChart.jsx +++ b/app/components/BubbleChart.jsx @@ -377,7 +377,7 @@ export default class BubbleChart extends Component { var div = d3.select(fauxNode) .attr('id', 'vis') .append('svg') - .attr('viewBox', `0 0 ${width*2} ${height*2}`) + .attr('viewBox', `0 0 ${width} ${height}`) .attr('preserveAspectRatio', 'xMidYMid meet') return ( diff --git a/app/components/HomeView.jsx b/app/components/HomeView.jsx index 5feaef1..f24b98c 100644 --- a/app/components/HomeView.jsx +++ b/app/components/HomeView.jsx @@ -14,21 +14,9 @@ class HomeView extends Component {