vue-carousel-3d icon indicating copy to clipboard operation
vue-carousel-3d copied to clipboard

Cannot change color of controllers arrow

Open AWodrich opened this issue 5 years ago • 3 comments

I would like to change the color of the navigation / controllors arrows. Is there a simple way to do that? Thank you!!

AWodrich avatar Sep 15 '20 18:09 AWodrich

I am looking for the same information; hopefully, someone can reply to this soon.

rtuttlecoder avatar Jan 04 '21 14:01 rtuttlecoder

I don't know if it's correct, but I'm using it this way ...

<style lang="scss" scoped>

....
::v-deep .prev {
  top: -64% !important;
  right: 0% !important;
  background: var(--v-secondary-base);
  height: 10vh !important;
  color: #000 !important;
  left: auto !important;
}
::v-deep .next {
  background: var(--v-secondary-base);
  height: 10vh !important;
  color: #000 !important;
}

dochner avatar Jan 28 '21 14:01 dochner

This one worked for me ! ☺

<style>

...

.carousel-3d-controls, .prev, .next {
  color: white !important;
}
</style>

CosmicDarine avatar Jun 20 '22 23:06 CosmicDarine