vue-tour
vue-tour copied to clipboard
RTL mode [BUG]
You need to adjust the position of the arrows when RTL mode is on.
html[dir=rtl] {
.v-step[data-popper-placement^=left] > .v-step__arrow {
right: -10px;
}
.v-step[data-popper-placement^=right] > .v-step__arrow {
left: 0px;
}
}
Hi @tol64, thanks for reporting this. Are you able to create a pull request that push your CSS code into the lib?