@roadiehq/backstage-plugin-github-insights
Version:
40 lines (37 loc) • 757 B
JavaScript
import { makeStyles } from '@material-ui/core';
const styles = makeStyles((theme) => ({
card: {
boxShadow: "none"
},
protectedBranches: {
display: "flex",
flexDirection: "row",
justifyContent: "space-between"
},
infoCard: {
marginBottom: "10px",
"& + .MuiAlert-root": {
marginTop: theme.spacing(3)
}
},
listStyle: {
paddingTop: 0,
"& :nth-child(1)": {
paddingTop: "0.1rem"
}
},
releaseTitle: {
fontSize: "1.1rem",
fontWeight: theme.typography.fontWeightMedium,
margin: 0,
marginRight: "0.5rem"
},
releaseTagIcon: {
verticalAlign: "middle"
},
listItem: {
justifyContent: "space-between"
}
}));
export { styles };
//# sourceMappingURL=styles.esm.js.map