Skip to content

Commit

Permalink
fix: appbar should be static
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Dec 20, 2019
1 parent 907b128 commit 88305ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/containers/Inspector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const Inspector: React.FC<IProps> = (props) => {

return (
<>
<AppBar elevation={0}>
<AppBar elevation={0} position="static">
<Toolbar>
<img
height="30"
Expand Down Expand Up @@ -197,7 +197,7 @@ const Inspector: React.FC<IProps> = (props) => {
readOnly: true,
showFoldingControls: "always",
}}
height="100vh"
height="93vh"
editorDidMount={handleResponseEditorDidMount}
language="json"
value={JSON.stringify(error || results, null, 4) || ""}
Expand Down
2 changes: 1 addition & 1 deletion src/containers/JSONRPCRequestEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const JSONRPCRequestEditor: React.FC<IProps> = (props) => {

return (
<MonacoEditor
height="100vh"
height="93vh"
value={props.value}
editorDidMount={handleEditorDidMount}
language="json"
Expand Down

0 comments on commit 88305ee

Please sign in to comment.