feat: publish local workspace (#1406)

This commit is contained in:
Himself65
2023-03-07 23:31:22 -06:00
committed by GitHub
parent 88967a1dbe
commit f172831733
7 changed files with 62 additions and 30 deletions
+8 -1
View File
@@ -20,7 +20,14 @@ const ThemeInjector = React.memo<{
return (
<GlobalStyles
styles={{
'#__next': globalThemeVariables(themeStyle) as any,
'#__next': {
...globalThemeVariables(themeStyle),
},
html: {
fontFamily: themeStyle.font.family,
fontSize: themeStyle.font.base,
lineHeight: themeStyle.font.lineHeight,
},
}}
/>
);