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
539 B
TypeScript
Raw Normal View History

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()(theme => ({
badge: {
backgroundColor: theme.palette.checkmarkBadge,
width: '75px',
height: '75px',
borderRadius: '50px',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
[theme.breakpoints.down('sm')]: {
width: '50px',
height: '50px',
},
},
check: {
color: '#fff',
width: '35px',
height: '35px',
},
}));