Skip to content

Commit

Permalink
KPMP-5233: Fix off size in the middle
Browse files Browse the repository at this point in the history
  • Loading branch information
rlreamy committed Mar 22, 2024
1 parent 212f1fb commit d5132ae
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 @@ -49,7 +49,7 @@ class FeaturePlot extends Component {
} else if (window.innerWidth > 767 && window.innerWidth <= 991) {
return { plotHeight: 600, plotWidth: 660 }
} else if (window.innerWidth > 508 && window.innerWidth <= 767) {
return { plotHeight: 500, plotWidth: 530 }
return { plotHeight: 400, plotWidth: 430 }
} 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 d5132ae

Please sign in to comment.