ngx-joyride icon indicating copy to clipboard operation
ngx-joyride copied to clipboard

how to remove backdrop?

Open camengadisaputra opened this issue 5 years ago • 1 comments

is there any way to remove backdrop?

camengadisaputra avatar Nov 04 '19 01:11 camengadisaputra

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

sted6 avatar Jun 12 '20 15:06 sted6