File size: 338 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { createGlobalStyle } from 'styled-components';
export default createGlobalStyle`
html, body, #root {
font-family: Catamaran, Helvetica Neue, Helvetica, Arial, sans-serif;
font-weight: 500;
height: 100%;
box-sizing: border-box;
overflow: hidden;
}
*, *:before, *:after {
box-sizing: inherit;
}
`;
|