aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/player-styles.component.ts
blob: 448a0ee96db835fd906c42b2123bb005c65645f4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                 
                                                                       



                                       
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 {
}