1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/feature/FeatureView/FeatureView.styles.ts
Fredrik Strand Oseberg 18287cdbd0 Fix/cleanup unused code (#651)
* 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
2022-02-04 10:36:08 +01:00

48 lines
1.1 KiB
TypeScript

import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles(theme => ({
container: { borderRadius: '10px', boxShadow: 'none', display: 'flex' },
header: {
backgroundColor: '#fff',
borderRadius: '10px',
marginBottom: '1rem',
},
toggleInfoContainer: {
display: 'flex',
alignItems: 'center',
},
innerContainer: {
padding: '1rem 2rem',
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
},
separator: {
width: '100%',
backgroundColor: theme.palette.grey[200],
height: '1px',
},
tabContainer: {
padding: '1rem 2rem',
},
tabButton: {
textTransform: 'none',
width: 'auto',
fontSize: '1rem',
},
featureViewHeader: {
fontSize: theme.fontSizes.mainHeader,
fontWeight: 'normal',
display: 'flex',
alignItems: 'center',
},
statusContainer: {
marginLeft: '0.5rem',
},
[theme.breakpoints.down(500)]: {
innerContainer: {
flexDirection: 'column',
},
},
}));