You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@tiagoboeing looking at your code this is because you are using shadow: true. Try scoped: true or remove. This lib extracts the css to document head. Using shadow: true encapsulates your styles, hence why its not picking them up
Using scoped: true works, but a very important resource is losted, the Shadow DOM. Using scoped makes the main application can be override styles from web components and classes can be conflict. 😥
I'm using
display: flex
and appear not apply on elements.Code example
Using
div
orspan
whethever, the result is the same.My component
Preview
For tests, adding
display: flex;
on dynamic created elementThe text was updated successfully, but these errors were encountered: