[Vuejs]-Vuetify V-flex full only half of card

0👍

You can add a full width flex box above the v-card on line 7:

 <v-flex xs12>
   <v-card flat v-for="ticket in tickets" :key="ticket.id">  
     ...

EDIT: My mistake… after taking another look you can change the div on line 2 to a v-flex, which will give you the results like in this codepen: https://codepen.io/retrograde/pen/ZNYJRq?editors=0001 Note that I removed the code added by my original answer.

Leave a comment