mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-03 01:18:43 +02:00
This PR adds support for projects as a first class citizen, and toggling features on in different environments.
32 lines
686 B
TypeScript
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',
|
|
},
|
|
}));
|