aboutsummaryrefslogtreecommitdiff
path: root/src/components/Loading
diff options
context:
space:
mode:
authorEug-VS <eug-vs@keemail.me>2020-01-28 12:41:35 +0300
committerEug-VS <eug-vs@keemail.me>2020-01-28 12:41:35 +0300
commit6ffd9ba4fdb459eb2e425ba1bf873baf7576c3f9 (patch)
treec8c0072a5934e10e247b6899883a7a45f44b488b /src/components/Loading
parentf7488e93bc5a250ff8ebc2035d653d6cf3ed8c21 (diff)
downloadchrono-cube-ui-6ffd9ba4fdb459eb2e425ba1bf873baf7576c3f9.tar.gz
feat!: migrate to BENZIN library
Diffstat (limited to 'src/components/Loading')
-rw-r--r--src/components/Loading/Loading.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Loading/Loading.js b/src/components/Loading/Loading.js
index e8b9701..e8793cc 100644
--- a/src/components/Loading/Loading.js
+++ b/src/components/Loading/Loading.js
@@ -12,6 +12,7 @@ import CircularProgress from '@material-ui/core/CircularProgress';
const useStyles = makeStyles(theme => ({
root: {
padding: theme.spacing(1),
+ background: theme.palette.background.elevation2,
},
}));
@@ -19,7 +20,7 @@ const Loading = () => {
const classes = useStyles();
return (
- <Card elevation={5} className={classes.root}>
+ <Card className={classes.root}>
<CardHeader
avatar={(<CircularProgress color="secondary" />)}
title="Loading"