I'm using Nuxt with Vuetify.
I created a class and assigned it some padding.
The class is defined in a unscoped <style> in layouts/default.vue.
when I'm on development mode (npm run dev) everything looks great as I aimed for.
the class is on container element so the final html looks like
<div class="container container--fluid my-class">
the devtools look like that when I'm on dev mode:

so my-class is applied. But once I build the project (npm run generate) my-class is overridden by the container class rules:

I guess it is happening because of the order in which the classes combined into a single css but not sure it behaves differently for dev and built projects. How can I fix it?