I have an Appbar and a drawer right beneath it. Under both components I have 3 divs with bootstrap and in each div I have a group of buttons.
The problem is that the Drawer covers the Appbar and I just can't seem to move it.
Here's my code:
<div className="App">
<AppBar position="static">
<Toolbar>
<IconButton color="inherit" aria-label="Menu">
<MenuIcon />
</IconButton>
<Typography variant="title" color="inherit" aria-label="Menu">
title
</Typography>
</Toolbar>
</AppBar>
<Drawer
variant="permanent"
style={{width: '100%', zIndex: '1400', position:'absolute'}}
>
<Button>1</Button>
<Button>2</Button>
<Divider />
<Button>1</Button>
<Button>2</Button>
</Drawer>
<br />
<div className="container-full">
<div className="row">
<div class="col-sm-6">
<GridList cellHeight={50} className={styles.gridList} cols={5}>
<Button style={{width: '150px', border: '1px solid'}} variant="raised" color="primary">
<div
style={{fontSize:'12px', display: 'flex', justifyContent: 'center', textAlign:'center'}}>
Mohnweckerl Wiener Gouda
</div>
</Button>
After the first bootstrap column, another "col-sm-4" follows and then a "col-sm-2". The buttons are in a GridList
Here's a visual
The Drawer should start where the arrows meet.
Any ideas?

!importantfor it to have any effect). You'll need to add padding of 56px to the top of the drawer as well. - smepaddingTop:56orpadding:56to the drawer, it just pushes my buttons down. The drawer stays as it is. - Claimz-index: 24 !important;- sme<AppBar position="absolute" style={{zIndex: 24}}>and the drawer inlinestyle={{position:'relative', zIndex: 1, paddingTop:'56px !important'}}- looks like this - Claim