diff --git a/src/components/HelpScout/index.tsx b/src/components/HelpScout/index.tsx index ca84d747..30176211 100644 --- a/src/components/HelpScout/index.tsx +++ b/src/components/HelpScout/index.tsx @@ -181,17 +181,17 @@ const HelpScout = ({ useEffect(() => { setPositionStyles({ - bottom: windowHeight < 740 ? '10px' : '40px', + bottom: windowHeight <= 740 ? '10px' : '40px', right: horizontalPosition === 'left' ? 'auto' - : windowHeight < 740 + : windowHeight <= 740 ? '20px' : '40px', left: horizontalPosition === 'right' ? 'auto' - : windowHeight < 740 + : windowHeight <= 740 ? '20px' : '40px' })