[Vuejs]-How to move arrows up from vuetify carousel

0👍

You can assign a class to v-carousel and set the style of the arrows from there.

<v-carousel class="myCarousel"><!-- content --></v-carousel>

<style>
.myCarousel .v-window__prev, .myCarousel .v-window__next {
  top: 0;
}
</style>

0👍

You can enter like this onto or into style.scss.

.v-window__prev{
position: absolute;
left:-95px;
top: 0px;
}

Leave a comment