18 lines
407 B
JavaScript
18 lines
407 B
JavaScript
import { createGlobalStyle } from "styled-components";
|
|
|
|
const GlobalStyle = createGlobalStyle`
|
|
body {
|
|
position: relative;
|
|
padding: 0 0 4.25rem;
|
|
box-sizing:border-box;
|
|
margin: 0;
|
|
background: ${props => props.theme.body.background};
|
|
color: ${props => props.theme.body.color};
|
|
font-family: sans-serif;
|
|
font-size: 1rem;
|
|
min-height: 100vh;
|
|
}
|
|
`;
|
|
|
|
export default GlobalStyle;
|