I created a custom element using LitElement in Polymer 3. I included a paper-card element inside that custom element. I would like to use the style mixins already defined to style that paper-card but I can't. For example, paper-card
define this mixin:
--paper-card-header-text
https://www.webcomponents.org/element/@polymer/paper-card/elements/paper-card
I tried almost everything to use that mixin inside my custom element, but doesn't work. For example:
`paper-card{
--paper-card-header-text:{
color: blue;
}
}`
I also imported the mixin polyfill but nothing
`import @webcomponents/shadycss/entrypoints/apply-shim.js;`
I need help Thanks