We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I have a little bit problem with height of the carousel__viewport. It cannot spread to full height of the carousel.
carousel__viewport
<script setup lang="ts"> import GeneralCard from "~/components/carousel/GeneralCard.vue"; import 'vue3-carousel/dist/carousel.css' const currentSlide = defineModel({type: Number}); </script> <template> <div class="carousel relative w-full h-full min-h-full overflow-hidden"> <ExtCarousel ref="carousel" v-model="currentSlide" :items-to-show="1.1" :wrap-around="true" :items-to-scroll="1" :touch-drag="true" snap-align="start" class="h-full min-h-full" > <ExtSlide v-for="contract in contracts" :key="contract" > <GeneralCard class="mr-4 h-full min-h-full"> Some code </GeneralCard> </ExtSlide> <ExtSlide v-for="card in cards" :key="card" > <GeneralCard class="mr-4 h-full min-h-full"> Some code </GeneralCard> </ExtSlide> </ExtCarousel> </div> </template> <style scoped> </style>
To Reproduce
Desktop (please complete the following information):
Smartphone (please complete the following information):
The text was updated successfully, but these errors were encountered:
Your ext slide doesn't have a full height on it
Sorry, something went wrong.
No branches or pull requests
Describe the bug
I have a little bit problem with height of the
carousel__viewport
. It cannot spread to full height of the carousel.To Reproduce
Desktop (please complete the following information):
Smartphone (please complete the following information):
The text was updated successfully, but these errors were encountered: