import { createGlobalStyle } from 'styled-components'; import mixins from '../../assets/styles/mixins'; import colors from '../../assets/styles/colors'; const GlobalStyle = createGlobalStyle` * { ${mixins().bbox} } html, body { -webkit-font-smoothing: antialiased; } html { font-size: 62.5%; } body { background-color: ${colors.greyIconBkgd}; } p { margin: 0; } a, button { cursor: pointer; outline: 0; } h1, h2, h3, p, label, button, input, textarea { /* stylelint-disable */ font-family: 'Lato' !important; /* styleint-enable */ } input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out"; -webkit-transition-delay: 9999s; } ul { list-style: none; padding: 0; margin: 0; } `; export default GlobalStyle;