3

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.

DjSh
  • 2,776
  • 2
  • 19
  • 32
Rex
  • 41
  • 1
  • 3

1 Answers1

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