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
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

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