diff options
author | Determinant <[email protected]> | 2019-04-09 20:40:57 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-04-09 20:40:57 -0400 |
commit | 94330abf2d1ba606976ec4f2dc10277b78cdd036 (patch) | |
tree | 5910cc50f380d3255edb32bc2c5b062a005aee63 /src | |
parent | 22413dd11dd57f083e8a0d25e9b7aea42c7f135a (diff) |
...
Diffstat (limited to 'src')
-rw-r--r-- | src/Snow.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Snow.tsx b/src/Snow.tsx index 9ab4dfd..a391f0a 100644 --- a/src/Snow.tsx +++ b/src/Snow.tsx @@ -25,7 +25,6 @@ const styles = (theme: Theme): StyleRules => ({ bottomButtons: { marginTop: 10, textAlign: 'center', - minWidth: 650 }, slider: { padding: '22px 0px', @@ -179,11 +178,11 @@ class Snow extends React.Component<SnowProps> { const { classes } = this.props; return ( - <MGrid container spacing={16} style={{minWidth: 600, maxWidth: 1600}}> + <MGrid container spacing={16} style={{minWidth: 600}}> <MGrid item lg={6} xs={12}> <Grid data={this.state.colorMatrix} /> </MGrid> - <MGrid item lg={6} xs={12}> + <MGrid item lg={4} xs={12}> <Table> <TableBody> <TableRow> @@ -251,7 +250,7 @@ class Snow extends React.Component<SnowProps> { </Table> <div className={classes.buttonSpacer} /> <div className={classes.bottomButtons}> - <MGrid container spacing={16}> + <MGrid container item spacing={16}> <MGrid item lg={4} xs={12}> <Button variant="contained" color="primary" |