Within vue-awesome-swiper, there's a standard class called this:
.swiper-button-next {
position: absolute;
right: 46%
}
The task at hand is to adjust this CSS code only for right-to-left layouts, like so:
.swiper-button-next {
position: absolute;
left: 46%
}
This modification needs to be conditional. How can this CSS code be conditionally altered?
IMPORTANT :- The condition for the modification is known, but the implementation is not clear.