Is there a way to over-ride the styling on the Vuetify carousel
next/prev icons? I see there are fields to use custom ones, but I'd like to keep the default $vuetify.icons.next
and just change its color.
Asked
Active
Viewed 5,115 times
3
-
See [this answer](https://stackoverflow.com/a/52271983/1981247) on similar question. – Traxo Apr 29 '19 at 21:26
1 Answers
3
One way of changing the icons color in Carousel
is by adding dark
or light
property to the Carousel
like this. See props in Vuetify Carousel
<v-carousel
light
delimiter-icon="stop"
prev-icon="mdi-arrow-left"
next-icon="mdi-arrow-right"
>
Another way is by adding the css class:
.v-btn .v-btn__content .v-icon {
color: black;
}

DjSh
- 2,776
- 2
- 19
- 32