joyent-portal/packages/ui-toolkit/src/base/index.js

16 lines
349 B
JavaScript
Raw Normal View History

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 };