Files
upbit/src/styles/GlobalStyle.js
2022-02-10 13:07:45 +09:00

19 lines
349 B
JavaScript

import { createGlobalStyle } from "styled-components";
import normalize from "styled-normalize";
import reset from "styled-reset";
const GlobalStyle = createGlobalStyle`
${normalize}
${reset}
* {
box-sizing: border-box;
}
body {
background-color: rgb(231, 234, 239);
/* height: 100%; */
}
`;
export default GlobalStyle;