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

27 lines
474 B
JavaScript

import { css } from 'styled-components';
import { fonts } from '../typography';
import theme from '../theme';
export default css`
${fonts.libreFranklin.normal};
${fonts.libreFranklin.medium};
${fonts.libreFranklin.semibold};
[hidden] {
display: none;
}
html {
line-height: 1.15;
text-size-adjust: 100%;
}
body {
font-size: 15px;
margin: 0;
padding: 0;
background: ${theme.background};
font-family: 'Libre Franklin'
}
`;