Here is my TabPane
:
https://i.stack.imgur.com/Ihxmn.png
I've been attempting to eliminate the padding. Some suggestions on SO led me to try this:
<TabPanel
value={value}
index={i}
classes={{
"& .MuiBox-root": {
padding: "0px",
},
}}
>
Unfortunately, it didn't work as expected.
Upon inspecting the page, I discovered that removing MuiBox-root-9
was necessary to remove the padding. However, removing just MuiBox-root
didn't have any effect:
<div class="MuiBox-root MuiBox-root-9">
Now I'm unsure how to target the class MuiBox-root-9
.