Merge pull request #1421 from danielyxie/dev

made log box resize a tad better
This commit is contained in:
hydroflame 2021-10-05 01:45:35 -04:00 committed by GitHub
commit 1b26d38a44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -120,11 +120,11 @@ function LogWindow(props: IProps): React.ReactElement {
}}
>
<Box id="drag" display="flex" alignItems="center">
<Typography color="primary" variant="h6" noWrap component="div">
<Typography color="primary" variant="h6">
{props.script.filename} {props.script.args.map((x: any): string => `${x}`).join(" ")}
</Typography>
<Box display="flex" marginLeft="auto">
<Box position="absolute" right={0}>
<Button onClick={kill}>Kill Script</Button>
<Button onClick={props.onClose}>Close</Button>
</Box>