1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-01 17:15:06 +07:00
verdaccio-ui/src/components/RegistryInfoDialog/styles.ts
2019-10-12 09:55:37 +02:00

17 lines
464 B
TypeScript

import styled from 'react-emotion';
import colors from '../../utils/styles/colors';
import { fontSize } from '../../utils/styles/sizes';
import DialogTitle from '../../muiComponents/DialogTitle';
import DialogContent from '../../muiComponents/DialogContent';
export const Title = styled(DialogTitle)({
backgroundColor: colors.primary,
color: colors.white,
fontSize: fontSize.lg,
});
export const Content = styled(DialogContent)({
padding: '0 24px',
});