I tried to overwrite the css of a custom component selector but it is not working. I have tried :ng-deep without success. How do I find a solution for this?
app.component.html:
<mycustommcomp></mycustommcomp>
app.component.css:
::ng-deep mycustommcomp{
margin:2px;
overflow:unset !important;
}
mycustomcomp.component.css:
mycustommcomp{
margin:8px;
overflow:hidden !important;
}
Demo: https://stackblitz.com/edit/angular-vsdzqs?file=src/app/app.component.css