vue-tour icon indicating copy to clipboard operation
vue-tour copied to clipboard

RTL mode [BUG]

Open tol64 opened this issue 3 years ago • 1 comments

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;
    }
}

tol64 avatar Dec 14 '21 07:12 tol64

Hi @tol64, thanks for reporting this. Are you able to create a pull request that push your CSS code into the lib?

HZooly avatar Jan 19 '22 12:01 HZooly