Skip to content

Commit d17f1d5

Browse files
authored
[Console] Fix output panel height (#202108)
1 parent c06adbc commit d17f1d5

File tree

1 file changed

+1
-1
lines changed
  • src/plugins/console/public/application/containers/editor

1 file changed

+1
-1
lines changed

src/plugins/console/public/application/containers/editor/editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export const Editor = memo(({ loading, inputEditorValue, setInputEditorValue }:
213213
<EuiSplitPanel.Outer borderRadius="none" hasShadow={false} style={{ height: '100%' }}>
214214
<EuiSplitPanel.Inner
215215
paddingSize="none"
216-
css={{ alignContent: 'center', top: 0 }}
216+
css={{ alignContent: 'center', top: 0, height: 'calc(100% - 40px)' }}
217217
className="consoleEditorPanel"
218218
>
219219
{data ? (

0 commit comments

Comments
 (0)