mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
25 lines
593 B
TypeScript
25 lines
593 B
TypeScript
|
import { makeStyles } from '@material-ui/core/styles';
|
||
|
|
||
|
export const useStyles = makeStyles(theme => ({
|
||
|
container: {
|
||
|
display: 'flex',
|
||
|
flexWrap: 'wrap',
|
||
|
[theme.breakpoints.down('xs')]: {
|
||
|
justifyContent: 'center',
|
||
|
},
|
||
|
},
|
||
|
apiError: {
|
||
|
maxWidth: '400px',
|
||
|
marginBottom: '1rem',
|
||
|
},
|
||
|
cardLink: {
|
||
|
color: 'inherit',
|
||
|
textDecoration: 'none',
|
||
|
border: 'none',
|
||
|
padding: '0',
|
||
|
background: 'transparent',
|
||
|
fontFamily: theme.typography.fontFamily,
|
||
|
pointer: 'cursor',
|
||
|
},
|
||
|
}));
|