Skip to content

Commit

Permalink
KPMP-5233: continuing to tweak sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
rlreamy committed Mar 25, 2024
1 parent 857c663 commit 3038bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Plots/FeaturePlot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 3038bb1

Please sign in to comment.