joyent-portal/packages/ui-toolkit/src/base/index.js
2017-09-27 14:01:46 +01:00

15 lines
321 B
JavaScript

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