[Vuejs]-V-container won't align left

0👍

I fixed it by placing import ‘vuetify/dist/vuetify.min.css’ as the last import.
The issue come back when I build and deploy the app but I guess it’s a different issue.

0👍

You can add a class to container:

...
<v-container class="margin-initial">
...

and in css

.margin-initial {
  margin: initial;
}

Or what ever other name. The trouble is with margin: auto; property as a default in v-container

Leave a comment