Despite my attempts with CSS, I can't seem to get this working. It's common knowledge that Vuetify carousels lack responsiveness. However, one would think that the Vuetify team would have addressed such issues by now. Is there a more effective way to achieve this?
<v-flex xs12 md8 lg6 >
<v-carousel style="border-radius:4px;" height="400px" class="slides">
<v-carousel-item
class="slides"
v-for="(item,i) in items"
:key="i"
:src="item.src"
reverse-transition="fade-transition"
transition="fade-transition"
>
</v-carousel-item>
</v-carousel>
</v-flex>