don't use deprecated theme spacing

This commit is contained in:
rjwats
2019-06-02 19:01:06 +01:00
parent 9da0888d7d
commit 5d9ccd3095
17 changed files with 60 additions and 58 deletions

View File

@@ -38,12 +38,12 @@ const styles = theme => ({
backgroundColor: theme.palette.highlight_warn
},
fetching: {
margin: theme.spacing.unit * 4,
margin: theme.spacing(4),
textAlign: "center"
},
button: {
marginRight: theme.spacing.unit * 2,
marginTop: theme.spacing.unit * 2,
marginRight: theme.spacing(2),
marginTop: theme.spacing(2),
}
});