GlobalStyles.js
387 Bytes
import { createGlobalStyle } from "styled-components";
import reset from "styled-reset";
export default createGlobalStyle`
${reset}
html {
box-sizing: border-box;
font-size: 16px;
}
body {
max-width: 100%;
}
li {
list-style: none;
}
a {
text-decoration:none;
}
input:focus {
outline:none;
}
`;