ngx-joyride
ngx-joyride copied to clipboard
how to remove backdrop?
is there any way to remove backdrop?
In your global styles.scss file:
.backdrop-container{
.backdrop-content {
.joyride-backdrop {
display: none;
}
}
}
If you only want to remove the backdrop for a specific step:
.backdrop-container {
#backdrop-stepNameHere {
display: none;
}
}