1// :host pseudo-class will apply styles to the parent of the current component
2
3:host {
4 background-color: #ffffff;
5 color: black;
6}
7
8// ::ng-deep pseudo-class will apply styles to the current component and its children
9
10::ng-deep div.feature {
11 border: 1px solid green;
12 border-radius: 50%;
13}
14