verdaccio-ui/src/webui/utils/styles/global.js

28 lines
547 B
JavaScript
Raw Normal View History

2019-02-03 17:23:33 +07:00
import { injectGlobal } from 'emotion';
import { fontFamilyBase } from './fonts';
import { fontSize, fontWeight } from './sizes';
import { textColor } from './colors';
export default injectGlobal`
html,
body {
height: 100%;
}
body {
font-family: ${fontFamilyBase};
font-size: ${fontSize.base};
color: ${textColor};
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
strong {
font-weight: ${fontWeight.semiBold};
}
`;