1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-22 03:11:36 +07:00
verdaccio-ui/src/webui/components/Author/styles.js
2019-04-04 21:23:40 +02:00

22 lines
402 B
JavaScript

/**
* @prettier
* @flow
*/
import styled from 'react-emotion';
import ListItem from '@material-ui/core/ListItem/index';
import Typography from '@material-ui/core/Typography/index';
export const Heading = styled(Typography)`
&& {
font-weight: 700;
text-transform: capitalize;
}
`;
export const AuthorListItem = styled(ListItem)`
&& {
padding-left: 0;
padding-right: 0;
}
`;