Hi,
In ‘dev’ mode, my component styles always come after the quasar styles. They take precedence.
However in ‘build’ mode, quasar styles are compiled after the style in my components.
This causes problems in code like this:
<div class=“card my-card-style”>
…
</div>
.my-card-style {
margin-bottom: 50px;
}
because in ‘build’ mode this custom style is included before quasar styles and therefore overriden by .card styles
Alternatively, how can I modify the config of webpack to put quasar css styles in it’s own separate bundle?
Thanks!