Tim - Hello 👋 I am embedding liveboards with d...

Hello 👋 I am embedding liveboards with dark mode implemented using custom css vars, but my users see a white loading screen briefly before the custom CSS rules are applied. How can I change the default background color of the iframe before the custom css is applied?
2 Replies
Ruchi Anand
Ruchi Anand•6d ago
Hi @Valhalla This is the known issue and has been addressed in the 10.10.0 release. In the meantime, you can fix this by adding the unstable rules in the customizations, like so: customizations: { style: { customCSS: { variables: { "--ts-var-root-background": "#000", "--ts-var-viz-background": "#000000", }, rules_UNSTABLE: { '.pinboard-content-module__tile': { 'background': 'none' } } }, }, },
Valhalla
ValhallaOP•5d ago
This isn't working for me. Its still white until the custom css is injected

Did you find this page helpful?