Вы можете отключить ViewEncapsulation. Посмотрите в следующем примере и для получения дополнительной информации прочитайте https://angular.io/guide/component-styles.
import { Component,ViewEncapsulation } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ],
encapsulation: ViewEncapsulation.None
})
export class AppComponent {
name = 'Skycons';
}
С наилучшими пожеланиями