2019-03-28 05:39:06 +07:00
|
|
|
import styled from 'react-emotion';
|
|
|
|
import { default as MuiFab } from '@material-ui/core/Fab';
|
2019-06-20 19:37:28 +07:00
|
|
|
import ListItem from '@material-ui/core/ListItem';
|
2019-03-28 05:39:06 +07:00
|
|
|
|
|
|
|
import colors from '../../utils/styles/colors';
|
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const ActionListItem = styled(ListItem)({
|
|
|
|
'&&': {
|
|
|
|
paddingTop: 0,
|
|
|
|
paddingLeft: 0,
|
|
|
|
paddingRight: 0,
|
|
|
|
},
|
|
|
|
});
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Fab = styled(MuiFab)({
|
|
|
|
'&&': {
|
|
|
|
backgroundColor: colors.primary,
|
|
|
|
color: colors.white,
|
|
|
|
marginRight: '10px',
|
|
|
|
},
|
|
|
|
});
|