put the height back in for the mobile drawer height, not sure why i took it out to begin with though
This commit is contained in:
parent
d7439f5244
commit
06da0aad25
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ export default function DisplayDrawer(props: Props) {
|
|||
classes={{ paper: classes.drawerPaper }}>
|
||||
<Box
|
||||
className={isMobile ? classes.drawerMobile : classes.drawerDesktop}
|
||||
style={{ width: isMobile ? "100%" : width }}>
|
||||
style={{ width: isMobile ? "100%" : width, height: isMobile ? drawerHeight + "vh" : 0}}>
|
||||
<Box className={classes.header} style={{ width: isMobile ? "100%" : width }}>
|
||||
<Box display="flex" justifyContent="space-between" alignItems="center">
|
||||
<Box>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue