I want to change the styles of ng bootstrap pagination component and using /deep/
links in an Angular 6 app. The following code works fine but the console is showing a warning that the code is deprecated.
So, how should I change it to get rid of the warning?
Here is the CSS code I am currently using:
ngb-pagination /deep/ .page-item.disabled .page-link{
background: none;
}
ngb-pagination /deep/ .page-item.active .page-link {
background-color: #223C61;
&:focus, &:visited{
outline: none;
box-shadow: none;
}
}