1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-24 01:18:01 +02:00
unleash.unleash/frontend/src/component/feature/FeatureView2/FeatureStatus/FeatureStatus.styles.ts
Ivar Conradi Østhus 6fc30d3a79 feat: add feature status ()
* feat: add feature status

* fix: use feature status in project feature list

* fix: text size

* fix: project view

* fix: padding

* fix: lint

* fix: snapshots

* fix: text size

* fix: snapshots

* fix: size

* fix: revert size

* fix: update snapshots

Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com>
2021-10-08 15:18:43 +02:00

17 lines
412 B
TypeScript

import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles(theme => ({
container: {
width: '42px',
height: '42px',
fontSize: '0.7em',
background: 'gray',
borderRadius: '3px',
textAlign: 'center',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
padding: '13px 10px',
},
}));