1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/common/CheckmarkBadge/CheckMarkBadge.styles.ts

23 lines
546 B
TypeScript
Raw Normal View History

import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles(theme => ({
badge: {
backgroundColor: theme.palette.primary.main,
width: '75px',
height: '75px',
borderRadius: '50px',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
[theme.breakpoints.down('xs')]: {
width: '50px',
height: '50px',
},
},
check: {
color: '#fff',
width: '35px',
height: '35px',
},
}));