1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-29 21:07:47 +07:00
verdaccio-ui/src/components/Dependencies/styles.ts
2019-10-26 08:44:25 +02:00

33 lines
639 B
TypeScript

import styled from 'react-emotion';
import Chip from '@material-ui/core/Chip';
import { fontWeight } from '../../utils/styles/sizes';
import Text from '../../muiComponents/Text';
import Card from '../../muiComponents/Card';
export const CardWrap = styled(Card)({
'&&': {
margin: '0 0 16px',
},
});
export const StyledText = styled(Text)({
fontWeight: fontWeight.bold,
textTransform: 'capitalize',
});
export const Tags = styled('div')({
'&&': {
display: 'flex',
justifyContent: 'start',
flexWrap: 'wrap',
margin: '0 -5px',
},
});
export const Tag = styled(Chip)({
'&&': {
margin: '5px',
},
});