cra-template-rb
Version:
The official React Boilerplate template for Create React App
37 lines (31 loc) • 720 B
text/typescript
import { createGlobalStyle } from 'styled-components';
import { StyleConstants } from './StyleConstants';
/* istanbul ignore next */
export const GlobalStyle = createGlobalStyle`
html,
body {
height: 100%;
width: 100%;
line-height: 1.5;
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
padding-top: ${StyleConstants.NAV_BAR_HEIGHT};
background-color: ${p => p.theme.background};
}
body.fontLoaded {
font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
p,
label {
line-height: 1.5em;
}
input, select, button {
font-family: inherit;
font-size: inherit;
}
.icon {
width: 1.5rem;
height: 1.5rem;
}
`;