forked from sombochea/verdaccio-ui
20 lines
497 B
TypeScript
20 lines
497 B
TypeScript
import styled from 'react-emotion';
|
|
import DialogTitle from '@material-ui/core/DialogTitle';
|
|
import DialogContent from '@material-ui/core/DialogContent';
|
|
import colors from '../../utils/styles/colors';
|
|
import { fontSize } from '../../utils/styles/sizes';
|
|
|
|
export const Title = styled(DialogTitle)({
|
|
'&&': {
|
|
backgroundColor: colors.primary,
|
|
color: colors.white,
|
|
fontSize: fontSize.lg,
|
|
},
|
|
});
|
|
|
|
export const Content = styled(DialogContent)({
|
|
'&&': {
|
|
padding: '0 24px',
|
|
},
|
|
});
|