potentially fix global style export

This commit is contained in:
Silas 2021-11-26 12:44:26 -05:00
parent ede4c6e5ca
commit b683ca504c
Signed by: silentsilas
GPG Key ID: 4199EFB7DAA34349
1 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,7 @@ export const ibmFontUrl =
export const robotoFontUrl = export const robotoFontUrl =
"https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"; "https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap";
export const GlobalStyle = createGlobalStyle` const GlobalStyle = createGlobalStyle`
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html { html {
@ -210,3 +210,5 @@ export const GlobalStyle = createGlobalStyle`
display: none; display: none;
} }
`; `;
export { GlobalStyle };