mirror of
https://github.com/owncast/owncast.git
synced 2024-11-27 17:59:21 +03:00
fix: split out styles into two style tags. Should help #2989
This commit is contained in:
parent
f0644f4cbe
commit
0fd18cf889
1 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,12 @@ export const Theme: FC = () => {
|
||||||
:root {
|
:root {
|
||||||
${appearanceVars.join(';\n')}
|
${appearanceVars.join(';\n')}
|
||||||
}
|
}
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<style
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `
|
||||||
${customStyles}
|
${customStyles}
|
||||||
`,
|
`,
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in a new issue