I have an issue with scss and the cli: angular adds an attribute _nghost-fyw-1
to the apps tag (component) during runtime. at the same time it adds an attribute selector to my css called _ngcontent-fyw-1
which of course won't work.
Do you have an idea how i could change this behavior/ avoid it?
PS: it also applies to regular css.
my components .scss file looks like this:
my-comp {
h1 {
background-color: red;
}
}