aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/constants/globalStyle.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/constants/globalStyle.tsx')
-rw-r--r--packages/website/ts/@next/constants/globalStyle.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/website/ts/@next/constants/globalStyle.tsx b/packages/website/ts/@next/constants/globalStyle.tsx
new file mode 100644
index 000000000..271dd2545
--- /dev/null
+++ b/packages/website/ts/@next/constants/globalStyle.tsx
@@ -0,0 +1,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 }