mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
4761847ce5
* feat: upgrade project list search to use the new search field * cleanup unused imports * feat: add upgraded search to projects and applications, polish search UX * refactor: TableSearch to new Search common component Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
25 lines
584 B
TypeScript
25 lines
584 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
container: {
|
|
display: 'flex',
|
|
flexWrap: 'wrap',
|
|
[theme.breakpoints.down('sm')]: {
|
|
justifyContent: 'center',
|
|
},
|
|
},
|
|
apiError: {
|
|
maxWidth: '400px',
|
|
marginBottom: '1rem',
|
|
},
|
|
cardLink: {
|
|
color: 'inherit',
|
|
textDecoration: 'none',
|
|
border: 'none',
|
|
padding: '0',
|
|
background: 'transparent',
|
|
fontFamily: theme.typography.fontFamily,
|
|
pointer: 'cursor',
|
|
},
|
|
}));
|