Skip to content

Commit be427df

Browse files
committed
Update Raxml.js
1 parent fb3e951 commit be427df

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/app/Raxml.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ import FileCopyIcon from '@mui/icons-material/FileCopy';
1313
import { FormHelperText } from '@mui/material';
1414

1515
const styles = (theme) => ({
16-
Raxml: {
17-
padding: '10px',
18-
width: '100%',
19-
flexShrink: 0,
20-
},
2116
button: {
2217
marginRight: theme.spacing(1),
2318
},
@@ -50,7 +45,13 @@ class Raxml extends React.Component {
5045
const { classes, run } = this.props;
5146

5247
return (
53-
<div className={classes.Raxml}>
48+
<Box
49+
sx={{
50+
padding: '10px',
51+
width: '100%',
52+
flexShrink: 0,
53+
}}
54+
>
5455
<Box
5556
component="form"
5657
mt={1}
@@ -108,7 +109,7 @@ class Raxml extends React.Component {
108109
</Box>
109110
<FormHelperText>Command</FormHelperText>
110111
</Box>
111-
</div>
112+
</Box>
112113
);
113114
}
114115
}

0 commit comments

Comments
 (0)