My app.component.html
is as below, app-login
is a Component
<app-login></app-login>
and If I write below code in login.component.scss
html, body{
height: 100% !important;
}
I get below style
html[_ngcontent-c3], body[_ngcontent-c3] {
height: 100% !important;
}
How do I target HTML
from component, please suggest.