mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-21 13:47:39 +02:00
* fix: remove unused context code * fix: refactor users * fix: rename delete user * fix: rename frontend * fix: update feature view path * fix: cleanup create feature * fix: cleanup feature views * fix: cleanup feature strategies * fix: update paths * fix: remove unused strategy components * fix strategies link * fix: update snapshots * fix: import paths * fix: add name to useEffect dependency
31 lines
737 B
TypeScript
31 lines
737 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
container: {
|
|
borderRadius: '10px',
|
|
backgroundColor: '#fff',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
padding: '1.5rem',
|
|
maxWidth: '350px',
|
|
minWidth: '350px',
|
|
marginRight: '1rem',
|
|
marginTop: '1rem',
|
|
},
|
|
|
|
header: {
|
|
fontSize: theme.fontSizes.subHeader,
|
|
fontWeight: 'normal',
|
|
margin: 0,
|
|
marginBottom: '0.5rem',
|
|
},
|
|
[theme.breakpoints.down(1000)]: {
|
|
container: {
|
|
marginBottom: '1rem',
|
|
width: '100%',
|
|
maxWidth: 'none',
|
|
minWidth: 'auto',
|
|
},
|
|
},
|
|
}));
|