DataJPA_V2/src/styles/global.js
2020-05-17 18:12:36 +07:00

27 lines
487 B
JavaScript

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;
outline: 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;
}
`;