blob: 448a0ee96db835fd906c42b2123bb005c65645f4 (
plain) (
tree)
|
|
import { Component, ViewEncapsulation } from '@angular/core'
/*
* Allows to lazy load global player styles in the watch component
*/
@Component({
selector: 'my-player-styles',
template: '',
styleUrls: [ './player-styles.component.scss' ],
/* eslint-disable @angular-eslint/use-component-view-encapsulation */
encapsulation: ViewEncapsulation.None
})
export class PlayerStylesComponent {
}
|