mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-27 01:19:00 +02:00
* refactor: rename createPersistentGlobalStateHook helper * refactor: move features filter state out of localStorage * refactor: show search state in page title * refactor: remove unused import * refactor: add a state chip to SearchField * refactor: improve var names
36 lines
889 B
JavaScript
36 lines
889 B
JavaScript
import { makeStyles } from '@material-ui/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
actionsContainer: {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
},
|
|
listParagraph: {
|
|
textAlign: 'center',
|
|
},
|
|
searchBarContainer: {
|
|
marginBottom: '2rem',
|
|
display: 'flex',
|
|
gap: '1rem',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
[theme.breakpoints.down('xs')]: {
|
|
display: 'block',
|
|
},
|
|
},
|
|
searchBar: {
|
|
minWidth: '450px',
|
|
[theme.breakpoints.down('xs')]: {
|
|
minWidth: '100%',
|
|
},
|
|
},
|
|
emptyStateListItem: {
|
|
border: `2px dashed ${theme.palette.borders.main}`,
|
|
padding: '0.8rem',
|
|
textAlign: 'center',
|
|
display: 'flex',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
},
|
|
}));
|