diff options
Diffstat (limited to 'src/components/Loading')
-rw-r--r-- | src/components/Loading/Loading.js | 3 |
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" |