I'm using react with material-ui, and I want to override the theme to match my own needs, I saw that you can change all of the properties of each component, but I tried to change the style of the appbar but nothing happend.
Here is what I tried:
let theme = {
appBar: {
style:{
height: 128
}
}
}
I know I can just change the height of the appbar but lets say I want to change something that is not a property, like the 'top' in the drawer's style, like this:
let theme= {
drawer:{
style:{
top: 64
}
}
}
So how can I do that?