Skip to content

Commit

Permalink
[Console] Fix output panel height (#202108)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba authored Nov 28, 2024
1 parent c06adbc commit d17f1d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export const Editor = memo(({ loading, inputEditorValue, setInputEditorValue }:
<EuiSplitPanel.Outer borderRadius="none" hasShadow={false} style={{ height: '100%' }}>
<EuiSplitPanel.Inner
paddingSize="none"
css={{ alignContent: 'center', top: 0 }}
css={{ alignContent: 'center', top: 0, height: 'calc(100% - 40px)' }}
className="consoleEditorPanel"
>
{data ? (
Expand Down

0 comments on commit d17f1d5

Please sign in to comment.