aboutsummaryrefslogtreecommitdiff
path: root/src/Analyze.tsx
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-02-19 17:28:31 -0500
committerDeterminant <ted.sybil@gmail.com>2019-02-19 17:28:31 -0500
commita0c4c906fb45dc37be38683f3caf13d310e8961d (patch)
tree50973aa766e695690eb002aadc7981465d7bed5c /src/Analyze.tsx
parent4405b25ca6844b27ecc18ec91e37470d283726d3 (diff)
more improvements
Diffstat (limited to 'src/Analyze.tsx')
-rw-r--r--src/Analyze.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Analyze.tsx b/src/Analyze.tsx
index bb3f38c..b272f30 100644
--- a/src/Analyze.tsx
+++ b/src/Analyze.tsx
@@ -194,7 +194,7 @@ class Analyze extends React.Component<AnalyzeProps> {
const { classes } = this.props;
return (
- <Grid container spacing={16}>
+ <Grid container spacing={16} style={{minWidth: 700}}>
<AlertDialog
title={this.state.dialogMsg.title}
message={this.state.dialogMsg.message}
@@ -239,17 +239,17 @@ class Analyze extends React.Component<AnalyzeProps> {
</FormGroup>
<div className={classes.buttonSpacer} />
<Grid container spacing={16}>
- <Grid item md={4} xs={12}>
+ <Grid item lg={4} xs={12}>
<FormGroup>
<Button variant="contained" color="primary" onClick={this.loadDefault}>Load Default</Button>
</FormGroup>
</Grid>
- <Grid item md={4} xs={12}>
+ <Grid item lg={4} xs={12}>
<FormGroup>
<Button variant="contained" color="primary" onClick={this.reset}>Reset</Button>
</FormGroup>
</Grid>
- <Grid item md={4} xs={12}>
+ <Grid item lg={4} xs={12}>
<FormGroup>
<Button variant="contained" color="primary" onClick={this.analyze}>Analyze</Button>
</FormGroup>