I'm using component from MUI, when I use dev tools I can see it has those styles:
.MuiList-padding {
padding-top: 8px;
padding-bottom: 8px;
}
I wish to remove the padding, but I can't get it to work, I tried
<Menu
id="simple-menu"
anchorEl={anchorEl}
keepMounted
open={Boolean(anchorEl)}
onClose={closeMenu}
styles={{MuiList:{{padding:none}}}}
>
<somecomponent/>
</Menu>
but no luck, any ideas?