Hello there,
If I declare some styles like this:
:host {
--test-elem: {
color:#F00;
}
}
[...]
span.account-name {
@apply --test-elem;
}
it works pretty well. But if I use
:host {
--app-drawer-width: 65px;
--app-drawer-scrim-background: #fff;
--app-drawer-content-container: {
background-color: #263448;
}
}
like I should, with polymer elements (see app-drawer polymer 3 elem), it doesn't work. that's annoying :(
Do you have any solution / help for this?