forked from sombochea/verdaccio-ui
82d7107de7
* refactor: introduced forwardRef * fix: fixed button prop listItem * chore: rollback package upgrade * fix: fixed snap
31 lines
581 B
TypeScript
31 lines
581 B
TypeScript
import styled from 'react-emotion';
|
|
import ListItemText from '@material-ui/core/ListItemText';
|
|
|
|
import ListItem from '../../muiComponents/ListItem';
|
|
|
|
export const TitleListItem = styled(ListItem)({
|
|
paddingLeft: 0,
|
|
paddingRight: 0,
|
|
paddingBottom: 0,
|
|
});
|
|
|
|
export const TitleListItemText = styled(ListItemText)({
|
|
'&&': {
|
|
paddingLeft: 0,
|
|
paddingRight: 0,
|
|
paddingTop: '8px',
|
|
},
|
|
});
|
|
|
|
export const PackageDescription = styled('span')({
|
|
'&&': {
|
|
display: 'block',
|
|
},
|
|
});
|
|
|
|
export const PackageVersion = styled('span')({
|
|
'&&': {
|
|
display: 'block',
|
|
},
|
|
});
|