Open AWodrich opened 4 years ago
I am looking for the same information; hopefully, someone can reply to this soon.
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;
}
This one worked for me ! ☺
<style>
...
.carousel-3d-controls, .prev, .next {
color: white !important;
}
</style>
I would like to change the color of the navigation / controllors arrows. Is there a simple way to do that? Thank you!!