2021-07-16 15:41:54 +02:00
|
|
|
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',
|
|
|
|
},
|
2022-02-28 17:00:12 +01:00
|
|
|
searchBarContainer: {
|
|
|
|
marginBottom: '2rem',
|
|
|
|
display: 'flex',
|
|
|
|
gap: '1rem',
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
alignItems: 'center',
|
|
|
|
[theme.breakpoints.down('xs')]: {
|
|
|
|
display: 'block',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
searchBar: {
|
2022-03-01 09:50:29 +01:00
|
|
|
minWidth: 450,
|
2022-02-28 17:00:12 +01:00
|
|
|
[theme.breakpoints.down('xs')]: {
|
|
|
|
minWidth: '100%',
|
|
|
|
},
|
|
|
|
},
|
2021-07-16 15:41:54 +02:00
|
|
|
}));
|