angular - how to hide ngb-carousel indicators and prev-next control -
i can't hide ngb-carousel indicators , prev-next control trough css, targeting css class wouldn't work. there option hide it?
in order affect css of ng-bootstrap components, have disable viewencapsulation.
import @angular/core:
import { viewencapsulation } '@angular/core'
then disable component in @component declaration:
@component({ encapsulation: viewencapsulation.none, selector: 'your-template-name', styleurls: ['your-template-name.component.scss'], template: ` ... ` })
then can target bootstrap classes etc. you'd expect in css file.
you want disable on per-component basis, , when need to.
Comments
Post a Comment