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

38 lines
537 B
JavaScript
Raw Normal View History

import { css } from 'styled-components';
import { loadedFontFamily } from '../typography';
export default ({ theme }) => css`
[hidden] {
display: none;
}
html {
line-height: 1.15;
text-size-adjust: 100%;
}
body {
font-size: 15px;
margin: 0;
padding: 0;
background: ${theme.background};
${loadedFontFamily};
}
2017-09-27 17:44:57 +03:00
html,
body,
#root {
2017-09-27 17:22:01 +03:00
height: 100%;
}
2017-09-27 17:44:57 +03:00
.CodeMirror,
.ReactCodeMirror {
2017-09-27 17:22:01 +03:00
height: 100% !important;
}
.CodeMirror {
border: solid 1px ${theme.grey};
}
`;