Skip to content

Commit

Permalink
fix: change CustomInitialLoader style
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrba committed Sep 12, 2022
1 parent 814d207 commit 781259f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/CustomInitialLoader/CustomInitialLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ const useStyles = makeStyles((theme) => ({
justifyContent: 'center',
alignItems: 'center',
},
progressBar: {
progressBarContainer: {
marginTop: theme.spacing(2),
},
progressBar: {
color: theme.palette.primary.main,
},
logo: {
Expand All @@ -28,7 +30,9 @@ const CustomInitialLoader: React.FC<Props> = ({ id }) => {
return (
<Container id={id} className={classes.container}>
<GraaspLogo height={100} className={classes.logo} />
<LinearProgress className={classes.progressBar} />
<div className={classes.progressBarContainer} >
<LinearProgress className={classes.progressBar} />
</div>
</Container>
);
};
Expand Down

0 comments on commit 781259f

Please sign in to comment.