1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-03 01:18:43 +02:00
unleash.unleash/frontend/src/component/project/Project/ProjectInfo/ProjectInfo.styles.ts
Fredrik Strand Oseberg 85a7c55fdf Feat/group by projects (#308)
This PR adds support for projects as a first class citizen, and toggling features on in different environments.
2021-07-07 11:04:36 +02:00

32 lines
686 B
TypeScript

import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles(theme => ({
projectInfo: {
width: '275px',
padding: '1rem',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
boxShadow: 'none',
},
subtitle: {
marginBottom: '1.25rem',
},
emphazisedText: {
fontSize: '1.5rem',
marginBottom: '1rem',
},
infoSection: {
margin: '1.8rem 0',
textAlign: 'center',
},
arrowIcon: {
color: '#635dc5',
marginLeft: '0.5rem',
},
infoLink: {
textDecoration: 'none',
color: '#635dc5',
},
}));