72 lines
1.6 KiB
JavaScript
72 lines
1.6 KiB
JavaScript
const drawerWidth = 240;
|
|
|
|
const styles = theme => ({
|
|
root: {
|
|
display: "flex"
|
|
},
|
|
appBar: {
|
|
zIndex: theme.zIndex.drawer + 1,
|
|
transition: theme.transitions.create(["width", "margin"], {
|
|
easing: theme.transitions.easing.sharp,
|
|
duration: theme.transitions.duration.leavingScreen
|
|
})
|
|
},
|
|
appBarShift: {
|
|
marginLeft: drawerWidth,
|
|
width: `calc(100% - ${drawerWidth}px)`,
|
|
transition: theme.transitions.create(["width", "margin"], {
|
|
easing: theme.transitions.easing.sharp,
|
|
duration: theme.transitions.duration.enteringScreen
|
|
})
|
|
},
|
|
menuButton: {
|
|
marginRight: 36
|
|
},
|
|
hide: {
|
|
display: "none"
|
|
},
|
|
drawer: {
|
|
width: drawerWidth,
|
|
flexShrink: 0,
|
|
whiteSpace: "nowrap"
|
|
},
|
|
drawerOpen: {
|
|
width: drawerWidth,
|
|
transition: theme.transitions.create("width", {
|
|
easing: theme.transitions.easing.sharp,
|
|
duration: theme.transitions.duration.enteringScreen
|
|
})
|
|
},
|
|
drawerClose: {
|
|
transition: theme.transitions.create("width", {
|
|
easing: theme.transitions.easing.sharp,
|
|
duration: theme.transitions.duration.leavingScreen
|
|
}),
|
|
overflowX: "hidden",
|
|
width: theme.spacing(7) + 1,
|
|
[theme.breakpoints.up("sm")]: {
|
|
width: theme.spacing(9) + 1
|
|
}
|
|
},
|
|
toolbar: {
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "flex-end",
|
|
padding: theme.spacing(0, 1),
|
|
// necessary for content to be below app bar
|
|
...theme.mixins.toolbar
|
|
},
|
|
title: {
|
|
flexGrow: 1
|
|
},
|
|
content: {
|
|
flexGrow: 1,
|
|
padding: theme.spacing(2)
|
|
},
|
|
menuItemIcon: {
|
|
minWidth: "26px"
|
|
}
|
|
});
|
|
|
|
export default styles;
|