[Vuejs]-How to change style color of arrows in Vue Slick Carousel?

5👍

Funny I’ve had the same problem a while ago, my problem was that I had defined my styles in a scoped style tag.

Try this code in a global style tag:

button.slick-prev:before, button.slick-next:before {
      background-color: red !important;
}

Leave a comment