[Vuejs]-Align content to left of viewport vuetify

0👍

With some help from a comment on the question it turns out that Nuxt has a default.vue and all the other components are mounted in that component at the tag. That tag was wrapped inside a container like:

<v-content>
  <v-container>
    <nuxt/>
  </v-container>
</v-content>

Removing the container removed the padding

<v-content>
    <nuxt/>
</v-content>

Leave a comment