2019-02-03 17:23:33 +07:00
|
|
|
import styled from 'react-emotion';
|
2019-06-20 19:37:28 +07:00
|
|
|
import ListItemText from '@material-ui/core/ListItemText';
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-10-13 02:11:23 +07:00
|
|
|
import ListItem from '../../muiComponents/ListItem';
|
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const TitleListItem = styled(ListItem)({
|
2019-10-13 02:11:23 +07:00
|
|
|
paddingLeft: 0,
|
|
|
|
paddingRight: 0,
|
|
|
|
paddingBottom: 0,
|
2019-07-15 16:57:32 +07:00
|
|
|
});
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const TitleListItemText = styled(ListItemText)({
|
|
|
|
'&&': {
|
|
|
|
paddingLeft: 0,
|
|
|
|
paddingRight: 0,
|
|
|
|
paddingTop: '8px',
|
|
|
|
},
|
|
|
|
});
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-10-05 04:19:50 +07:00
|
|
|
export const PackageDescription = styled('span')({
|
|
|
|
'&&': {
|
|
|
|
display: 'block',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export const PackageVersion = styled('span')({
|
2019-07-15 16:57:32 +07:00
|
|
|
'&&': {
|
2019-10-05 04:19:50 +07:00
|
|
|
display: 'block',
|
2019-07-15 16:57:32 +07:00
|
|
|
},
|
|
|
|
});
|