fix: split out styles into two style tags. Should help #2989

This commit is contained in:
Gabe Kangas
2023-06-27 17:43:46 -07:00
parent f0644f4cbe
commit 0fd18cf889

View File

@@ -33,6 +33,12 @@ export const Theme: FC = () => {
:root {
${appearanceVars.join(';\n')}
}
`,
}}
/>
<style
dangerouslySetInnerHTML={{
__html: `
${customStyles}
`,
}}