Skip to content

Commit ca8a759

Browse files
committed
place tooltip on left
1 parent 2da0018 commit ca8a759

File tree

1 file changed

+6
-3
lines changed
  • packages/selenium-ide/src/browser/components/PlaybackDimensionControls

1 file changed

+6
-3
lines changed

packages/selenium-ide/src/browser/components/PlaybackDimensionControls/index.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ const fieldStyle = { width: 60 }
1414
const inputProps = {
1515
sx: {
1616
paddingLeft: 0.5,
17-
paddingRight: 0.5
17+
paddingRight: 0.5,
1818
},
19-
};
19+
}
2020

2121
const PlaybackDimensionControls: React.FC<Pick<SIDEMainProps, 'session'>> = ({
2222
session,
@@ -43,7 +43,10 @@ const PlaybackDimensionControls: React.FC<Pick<SIDEMainProps, 'session'>> = ({
4343
}, [active])
4444
return (
4545
<>
46-
<Tooltip title="Force panel window dimensions (will zoom out if larger than panel and crop if smaller)">
46+
<Tooltip
47+
placement="left"
48+
title="Force panel window dimensions (will zoom out if larger than panel and crop if smaller)"
49+
>
4750
<Box
4851
className="flex flex-row flex-initial ps-3"
4952
justifyContent="center"

0 commit comments

Comments
 (0)