File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/components/CodeEditor Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export function HeightControllerBar({
6969
7070 return (
7171 < div className = { styles . bar } >
72- < Tooltip content = { 'Height of the code editor' } >
72+ < Tooltip content = { 'Height of the code editor' } placement = "bottom" >
7373 < div >
7474 < span >
7575 { editorHeight === 5 ? '(min) ' : '' }
@@ -82,13 +82,15 @@ export function HeightControllerBar({
8282 < IconButton
8383 aria-label = "Set editor height to 64px"
8484 tooltip = "Set editor height to 64px"
85+ tooltipPlacement = "bottom"
8586 name = { shrinkIcon }
8687 size = "md"
8788 onClick = { ( ) => actuallySetContainerHeight ( `${ 64 + editorHeightOffset } px` ) }
8889 />
8990 < IconButton
9091 aria-label = "Set editor height to 33vh"
9192 tooltip = { `Set editor height to 33vh (${ viewHeight33InPx - editorHeightOffset } px)` }
93+ tooltipPlacement = "bottom"
9294 name = { expandIcon }
9395 size = "md"
9496 onClick = { ( ) => actuallySetContainerHeight ( '33vh' ) }
You can’t perform that action at this time.
0 commit comments