Skip to content

Commit

Permalink
Merge pull request #33 from jxnkwlp/feature/variables
Browse files Browse the repository at this point in the history
πŸ› fix monaco editor height
  • Loading branch information
jxnkwlp committed Jun 14, 2023
2 parents e6e9a12 + 4b15484 commit 6a96ff8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const MonacoEditor: React.FC<MonacoEditorProps> = (props) => {
};

return (
<div className={border ? 'monaco-editor-container' : ''}>
<div className={border ? 'monaco-editor-container' : ''} style={{ height: '100%' }}>
<Editor
width={width}
height={height}
Expand Down

0 comments on commit 6a96ff8

Please sign in to comment.