File size: 553 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import { createGlobalStyle } from 'styled-components';
export default createGlobalStyle`
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');
* {
margin: 0;
padding: 0;
cutline: 0;
box-sizing: border-box;
}
html, body, #root {
height: 100%;
}
body {
font: 14px 'Roboto', sans-serif;
background: #ecf1f8;
color: #333;
-webkit-font-smoothing: antialiased !important;
}
ul {
list-style: none;
}
`; |