1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-29 21:07:47 +07:00
verdaccio-ui/src/components/Help/styles.ts

18 lines
344 B
TypeScript
Raw Normal View History

2019-02-03 17:23:33 +07:00
import styled from 'react-emotion';
import { default as Typography } from '../../muiComponents/Heading';
2019-10-26 13:44:25 +07:00
import Card from '../../muiComponents/Card';
export const CardStyled = styled(Card)({
'&&': {
width: '600px',
margin: 'auto',
},
});
2019-02-03 17:23:33 +07:00
export const HelpTitle = styled(Typography)({
'&&': {
marginBottom: '20px',
},
});