1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-30 15:06:22 +07:00
verdaccio-ui/src/components/Install/styles.js

29 lines
516 B
JavaScript
Raw Normal View History

2019-03-28 05:39:06 +07:00
/**
* @prettier
* @flow
*/
import styled from 'react-emotion';
import Typography from '@material-ui/core/Typography/index';
import ListItem from '@material-ui/core/ListItem/index';
import Avatar from '@material-ui/core/Avatar/index';
export const Heading = styled(Typography)`
&& {
font-weight: 700;
text-transform: capitalize;
}
`;
export const InstallItem = styled(ListItem)`
&& {
padding: 0;
}
`;
export const PackageMangerAvatar = styled(Avatar)`
&& {
border-radius: 0px;
}
`;