I keep receiving warnings when I run ng-build -c production for all my styles that contain the '>>>' notation.
Warning: ▲ [WARNING] Unexpected ">" /Users/mike/project2022/client/src/app/bank/bank-new/bank-new.component.ts-angular-inline--13.css:33:13: 33 │ :host >>> .nav-item > a {
INQUIRY - How can I resolve this issue?
For example, encountering warnings with the use of '>>>' during build processes
@Component({
selector: 'app-bank-new',
templateUrl: './bank-new.component.html',
styleUrls: ['./bank-new.component.scss'],
styles: [
`
:host >>> .nav-item > a {
color: #17a2b8 !important;
}
:host >>> form-wizard > .card {
border-radius: 0 !important;
height: calc(100vh - 57px) !important;
border: none !important;
}
:host >>> .card-footer {
display: none !important;
}
`
]
})