import {Component} from '@angular/core'; import {By} from '@angular/platform-browser'; const a = By.css('mat-form-field'); @Component({ template: ` ` }) class B {} @Component({ styles: [` mat-form-field { flex-direction: row; } :host > mat-form-field { text-align: right; } `] }) class C {}