我正在尝试自定义样式React mui 选项卡以完成以下操作:
我试图将框阴影设置为选定的选项卡并删除边框底部。设置 box-shadow 有效,但删除 border-bottom 没有。这是样式对象:
const styles = theme => ({
root: {
flexGrow: 1,
backgroundColor: theme.palette.background.paper
},
selected: {
boxShadow: theme.shadows[1]
},
tab: {
border: "none"
}
});
这就是我的标签的样子:
<Tab
label="Item One"
classes={{ selected: classes.selected, root: classes.tab }}
/>
您可以在此处查看整个示例。
我想如何删除选定选项卡上的边框?在期待控制台中的元素时,我什至看不到边框来自哪里。