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
27 lines
689 B
TypeScript
27 lines
689 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
environmentContainer: {
|
|
display: 'flex',
|
|
marginBottom: '1rem',
|
|
flexWrap: 'wrap',
|
|
width: '100%',
|
|
position: 'relative',
|
|
justifyContent: 'center',
|
|
},
|
|
environmentMetrics: {
|
|
border: `1px solid ${theme.palette.grey[300]}`,
|
|
margin: '0.5rem',
|
|
width: '30%',
|
|
},
|
|
[theme.breakpoints.down(1000)]: {
|
|
environmentMetrics: { width: '50%' },
|
|
},
|
|
[theme.breakpoints.down(750)]: {
|
|
environmentMetrics: { width: '100%' },
|
|
},
|
|
secondaryContent: {
|
|
marginTop: '1rem',
|
|
},
|
|
}));
|