Skip to content

Commit 06c5acb

Browse files
committed
Fix HelpScout mobile styles
1 parent 171b9f4 commit 06c5acb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/HelpScout/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,17 +181,17 @@ const HelpScout = ({
181181

182182
useEffect(() => {
183183
setPositionStyles({
184-
bottom: windowHeight < 740 ? '10px' : '40px',
184+
bottom: windowHeight <= 740 ? '10px' : '40px',
185185
right:
186186
horizontalPosition === 'left'
187187
? 'auto'
188-
: windowHeight < 740
188+
: windowHeight <= 740
189189
? '20px'
190190
: '40px',
191191
left:
192192
horizontalPosition === 'right'
193193
? 'auto'
194-
: windowHeight < 740
194+
: windowHeight <= 740
195195
? '20px'
196196
: '40px'
197197
})

0 commit comments

Comments
 (0)