blob: 271dd2545a7ccbdf09718da0fa5d8c9019edfc30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { createGlobalStyle } from 'styled-components';
import { cssReset } from 'ts/@next/constants/cssReset';
// Not sure if cssReset is already imported into index.tsx
// Also: currently createglobalStyle from styled-components is
// throwing a warning about how there's not typing exported from styled-comps
const GlobalStyles = createGlobalStyle`
${cssReset};
html {
background-color: red;
}
`;
export { GlobalStyles }
|