We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It appears that styles are getting applied twice in the shadow DOM:
static get styles() { return [ css` .error { background: red; color: #fff; } .success { background: green; color: #fff; } .warning { background: yellow; color: #fff; }`, ]; }
shows double in Chrome 71 element inspector:
The text was updated successfully, but these errors were encountered:
Thanks, we'll get this fixed asap.
Sorry, something went wrong.
Ensure styles are not duplicated in ShadowDOM
2e08093
Fixes #480 by refactoring to avoid the typo that was causing styling to be duplicated when an array was returned from `static get styles`.
Ensure styles are not duplicated in ShadowDOM (#481)
2cbe3e0
sorvell
No branches or pull requests
It appears that styles are getting applied twice in the shadow DOM:
shows double in Chrome 71 element inspector:
Versions
The text was updated successfully, but these errors were encountered: