我查看了文档,无法找到定义z-index
显示样式的属性Drawer
:AppBar上方/下方?有什么快速的方法吗?
THX,
答案 0 :(得分:1)
你走了:
<Drawer
containerStyle={{zIndex: 1000}}
>
对于某些z-index
!=
AppBar
&#39;
答案 1 :(得分:0)
您可以使用ThemeProvider
在应用程序的顶层为抽屉和应用程序栏设置样式。有一个zIndex
属性,用于描述不同组件的这些值。
import { ThemeProvider } from "@material-ui/styles";
import { createMuiTheme } from "@material-ui/core/styles";
const customTheme = createMuiTheme({
zIndex: {
appBar: 1100,
drawer: 1200
}
});
// Then, wrap your app with a ThemeProvider
<ThemeProvider theme={customTheme}>
<App />
</ThemeProvider>