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;
}
- [Vuejs]-Renaming Vuex module thinks the old one is still there
- [Vuejs]-How to use vuetify to send pdf/word document to .net core api
Source:stackexchange.com