diff --git a/frontend/src/Components/Tooltip/Tooltip.js b/frontend/src/Components/Tooltip/Tooltip.js index 11dd100af..6a7cb9e3d 100644 --- a/frontend/src/Components/Tooltip/Tooltip.js +++ b/frontend/src/Components/Tooltip/Tooltip.js @@ -13,19 +13,15 @@ let maxWidth = null; function getMaxWidth() { const windowWidth = window.innerWidth; - if (windowWidth > parseInt(dimensions.breakpointLarge)) { + if (windowWidth >= parseInt(dimensions.breakpointLarge)) { maxWidth = 800; - } - - if (windowWidth > parseInt(dimensions.breakpointMedium)) { + } else if (windowWidth >= parseInt(dimensions.breakpointMedium)) { maxWidth = 650; - } - - if (windowWidth > parseInt(dimensions.breakpointSmall)) { + } else if (windowWidth >= parseInt(dimensions.breakpointSmall)) { maxWidth = 500; + } else { + maxWidth = 450; } - - maxWidth = 450; } class Tooltip extends Component {