DocSpace-client/packages/asc-web-components/utils/globalStyles.js
2021-02-24 17:42:09 +03:00

14 lines
310 B
JavaScript

import { createGlobalStyle } from "styled-components";
const GlobalStyle = createGlobalStyle`
html, body {
margin: 0;
background-color: ${props => props.theme.backgroundColor};
color: ${props => props.theme.color};
font-family: ${props => props.theme.fontFamily};
}
`;
export default GlobalStyle;