My Card component in HTML looks like this:
<div class="MuiPaper-root MuiCard-root makeStyles-Card-5 MuiPaper-elevation1 MuiPaper-rounded">
I want to change MuiPaper-elevation1
to MuiPaper-elevation0
to remove the shadow.
I attempted:
<Card
MuiPaperElevation0
MuiPaper-elevation0
style={{ boxShadow: 0 }}
>
However, this didn't work and the shadow is still present. Can someone please guide me on how to achieve this? Thanks!