2019-11-23 19:41:14 +07:00
|
|
|
import styled from '@emotion/styled';
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-10-13 02:41:42 +07:00
|
|
|
import { default as Typography } from '../../muiComponents/Heading';
|
2019-10-26 13:44:25 +07:00
|
|
|
import Card from '../../muiComponents/Card';
|
2019-10-13 02:41:42 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const CardStyled = styled(Card)({
|
2019-11-23 19:41:14 +07:00
|
|
|
width: 600,
|
|
|
|
margin: 'auto',
|
2019-07-15 16:57:32 +07:00
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const HelpTitle = styled(Typography)({
|
2019-11-23 19:41:14 +07:00
|
|
|
marginBottom: 20,
|
2019-07-15 16:57:32 +07:00
|
|
|
});
|