2019-03-28 05:39:06 +07:00
|
|
|
import styled from 'react-emotion';
|
2019-06-20 19:37:28 +07:00
|
|
|
import ListItem from '@material-ui/core/ListItem';
|
|
|
|
import Typography from '@material-ui/core/Typography';
|
2019-08-09 03:58:15 +07:00
|
|
|
import { fontWeight } from '../../utils/styles/sizes';
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Heading = styled(Typography)({
|
|
|
|
'&&': {
|
2019-08-09 03:58:15 +07:00
|
|
|
fontWeight: fontWeight.bold,
|
2019-07-15 16:57:32 +07:00
|
|
|
textTransform: 'capitalize',
|
|
|
|
},
|
|
|
|
});
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const EngineListItem = styled(ListItem)({
|
|
|
|
'&&': {
|
|
|
|
paddingLeft: 0,
|
|
|
|
},
|
|
|
|
});
|