joyent-portal/packages/ui-toolkit/src/base/index.js
Sérgio Ramos 8295bd6882 chore: initial lerna setup
this shall be a progressive process
2017-05-25 10:56:50 +01:00

16 lines
349 B
JavaScript

import typography from '../typography';
import styled from 'styled-components';
import global from './global';
export default styled.div`
${typography.fontFamily};
${typography.normal};
font-size: 1rem;
line-height: 1.5;
background-color: ${props => props.theme.background};
color: ${props => props.theme.text};
`;
export { global };