- I am currently learning how to use material ui.
- My goal is to customize the loading bar's CSS.
- I checked the documentation and utilized colorPrimary classes.
- However, the changes are not appearing as expected.
- Could you please guide me on how to resolve this so that I can troubleshoot similar issues in the future?
- Below is a snippet of my code.
- All relevant code can be found in ReceipeReviewCardList.js
https://codesandbox.io/s/2zonj08v5r
const styles = {
root: {
flexGrow: 1
},
colorPrimary: {
color: "green"
}
};
render() {
const { classes } = this.props;
return (
<div className={classes.root}>
<LinearProgress
className={classes.colorPrimary}
variant="determinate"
value={this.state.completed}