I'm facing an issue with my VuetifyJS v-carousel-item
. I have an image, title, and subtitle displayed but there's a lot of unnecessary whitespace at the bottom. Even after setting the background color for v-carousel-item
to Purple, it's not looking right as seen in the picture.
https://i.sstatic.net/Ogfwv.png
I've attempted to remove the content of the carousel item to troubleshoot the issue and this is the result I obtained.
https://i.sstatic.net/PmuAD.png
Various attempts such as adjusting the height, removing padding, and margins have all been unsuccessful. Below is the code snippet showcasing my current settings:
<v-carousel
cycle
:show-arrows="false"
style="background-color: pink"
>
<v-carousel-item
v-for="item in carouselItems"
:key="item.id"
style="background-color: purple; height: 800px"
class="pb-0 mb-0"
>
<- Content for Carousel item->
</v-carousel-item>
</v-carousel>
If you have any suggestions or solutions, please feel free to share them. Your help is much appreciated.