@veecode-platform/plugin-kong-service-manager
Version:
59 lines (56 loc) • 1.32 kB
JavaScript
import { makeStyles } from '@material-ui/core';
const useMenuOptionsStyles = makeStyles((theme) => ({
listComponent: {
height: "100%",
minHeight: "70vh",
[]: {
display: "flex",
minHeight: "auto"
}
},
link: {
color: theme.palette.text.primary,
textDecoration: "none",
display: "flex",
alignItems: "center",
justifyContent: "center"
},
activeLink: {
borderRadius: "8px",
color: theme.palette.text.primary,
background: theme.palette.background.paper,
"&:before": {
content: '""',
width: "3px",
height: "30px",
backgroundColor: theme.palette.link,
borderRadius: "3px",
position: "absolute",
left: 0,
[]: {
backgroundColor: "transparent"
}
}
},
listItem: {
cursor: "pointer",
height: "64px",
fontWeight: 700,
borderRadius: "8px",
paddingLeft: theme.spacing(4),
"&:hover": {
background: "#CDCDCD90"
},
[]: {
minWidth: "165px"
},
[]: {
minWidth: "100px"
},
[]: {
minWidth: "115px"
}
}
}));
export { useMenuOptionsStyles };
//# sourceMappingURL=styles.esm.js.map