From 3038bb12a8c8f135a7ec16bb5dafe1fe4b7fe8a3 Mon Sep 17 00:00:00 2001 From: Becky Reamy Date: Mon, 25 Mar 2024 13:58:37 -0400 Subject: [PATCH] KPMP-5233: continuing to tweak sizing --- src/components/Plots/FeaturePlot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Plots/FeaturePlot.js b/src/components/Plots/FeaturePlot.js index 25a0db84..3e8419b0 100644 --- a/src/components/Plots/FeaturePlot.js +++ b/src/components/Plots/FeaturePlot.js @@ -52,7 +52,7 @@ class FeaturePlot extends Component { } else if (window.innerWidth > 767 && window.innerWidth <= 991) { return { plotHeight: 600, plotWidth: 600 } } else if (window.innerWidth > 508 && window.innerWidth <= 767) { - return { plotHeight: 500, plotWidth: 500 } + return { plotHeight: 450, plotWidth: 450 } } else if (window.innerWidth > 408 && window.innerWidth <= 508) { return { plotHeight: 300, plotWidth: 360 } } else if (window.innerWidth > 0 && window.innerWidth <= 408) {