We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have this popover, but arrow is not pointing to highlighted element at all.
My step config:
const step1: DriveStep = { element: '#onboarding-step-1', popover: { description: 'This rate shows played minutes of other managers Squad.', side: 'bottom', align: 'center', showProgress: true, showButtons: ['next'] } };
My driver config:
const driverObj = driver({ overlayColor: '#172d49', overlayOpacity: 0.25, popoverClass: 'onboarding-tour', stagePadding: 7, stageRadius: 50, showProgress: true, steps: [step1, step2, step3, step4], allowClose: false, nextBtnText: 'Next', onNextClick: (element, step, options) => { driverObj.moveNext() if (!driverObj.hasNextStep()) { options.config.stageRadius = 8 } }, });
Also i had to add this to see arrow:
.driver-popover-arrow-none { display: block !important; }
Maybe am I missing somtehing?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have this popover, but arrow is not pointing to highlighted element at all.
My step config:
My driver config:
Also i had to add this to see arrow:
Maybe am I missing somtehing?
The text was updated successfully, but these errors were encountered: