You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
602 B

import { createGlobalStyle } from 'styled-components'
const GlobalStyle = createGlobalStyle`
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v15/Fl4y0QdOxyyTHEGMXX8kcaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Roboto Light', 'Roboto', Arial, Helvetica, sans-serif;
font-size: 13px;
line-height: 1.4;
-webkit-font-smoothing: antialiased;
}
`
export default GlobalStyle