How to style a component in angular? I use angular 5 and I tried this:
:host {
background-color: green;
size: 200px 200px;
}
And this:
app-root {
background-color: green;
size: 200px 200px;
}
Both approaches don't seem to work.