Skip to content

Commit 1cb6897

Browse files
authored
Merge pull request #128 from open-rpc/fix/markdown-desc-add-vim-mode
fix: resize help
2 parents b559f7b + 5bd70b2 commit 1cb6897

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/containers/Inspector.tsx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -477,11 +477,15 @@ const Inspector: React.FC<IProps> = (props) => {
477477
language="json"
478478
value={JSON.stringify(errorToJSON(error) || results, null, 4) || ""}
479479
/>
480-
: <Grid container justify="center" style={{ paddingTop: "20px" }}>
481-
<Typography variant="caption" gutterBottom>Press the Play button to see the results here.</Typography>
482-
<Typography variant="caption">
483-
Use <Button variant="contained" disabled size="small" style={{marginRight: "3px"}}>CTRL + SPACE</Button>
484-
to auto-complete in the editor.
480+
: <Grid container justify="center" style={{ paddingTop: "20px" }} direction="column" alignItems="center">
481+
<Typography variant="body1" gutterBottom color="textSecondary" style={{paddingBottom: "15px"}}>
482+
Press the Play button to see the results here.
483+
</Typography>
484+
<Typography variant="body1" color="textSecondary">
485+
Use <Button variant="contained" disabled size="small" style={{ marginRight: "3px" }}>
486+
CTRL + SPACE
487+
</Button>
488+
to auto-complete in the editor.
485489
</Typography>
486490
</Grid>
487491
}

0 commit comments

Comments
 (0)