I have a custom-styles
file that defines html and body like this:
<style is="custom-style">
html, body { color: #ffffff; background-color: #212121; }
</style>
The problem I have is that those styles are leaking to custom elements in their local dom, making the font color white.
This should not be happening according to the documentation here: https://www.polymer-project.org/1.0/docs/devguide/styling.html#custom-style
My question is: Is this the default behavior or is this a bug?
Thanks