I have this :
@Component({
selector: 'host-element',
template: `<elementA></elementA>`,
styles:[''] //styles here
})
export class hostElement {}
How do I target the styles of elementA component from host-element?
Thanks in advance!!