Atul gupta
Atul gupta

Reputation: 75

vuetify too much gap from the App bar - How to reduce

In my vue.js/vuetify app the gap between App bar and following contents is too much.

How can I minimize it?

Below is the screenshot

all help highly appreciated. Thanks

enter image description here

Upvotes: 0

Views: 1230

Answers (1)

lokesh
lokesh

Reputation: 343

At the start of the SET UP Time table DIV OR V-layout or the tag from which it starts add this example code (class="ma-0 pa-0")

<v-layout>
  <v-container class="ma-0 pa-0">
  </v-container>
</v-layout>

Upvotes: 1

Related Questions