2019-02-03 17:23:33 +07:00
|
|
|
import styled from 'react-emotion';
|
|
|
|
import Typography from '@material-ui/core/Typography';
|
|
|
|
import { default as MuiFab } from '@material-ui/core/Fab';
|
|
|
|
import colors from '../../utils/styles/colors';
|
|
|
|
|
2019-07-15 15:41:12 +07:00
|
|
|
export const Details = styled('span')({
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
alignItems: 'center',
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
|
|
|
export const Content = styled('div')`
|
2019-03-28 05:39:06 +07:00
|
|
|
margin: 10px 0 10px 0;
|
2019-02-03 17:23:33 +07:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
> * {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const Heading = styled(Typography)`
|
|
|
|
&& {
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const Fab = styled(MuiFab)`
|
|
|
|
&& {
|
|
|
|
background-color: ${colors.primary};
|
|
|
|
color: ${colors.white};
|
|
|
|
}
|
|
|
|
`;
|