]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/player-styles.component.ts
Merge branch 'release/4.1.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / player-styles.component.ts
1 import { Component, ViewEncapsulation } from '@angular/core'
2
3 /*
4 * Allows to lazy load global player styles in the watch component
5 */
6
7 @Component({
8 selector: 'my-player-styles',
9 template: '',
10 styleUrls: [ './player-styles.component.scss' ],
11 /* eslint-disable @angular-eslint/use-component-view-encapsulation */
12 encapsulation: ViewEncapsulation.None
13 })
14 export class PlayerStylesComponent {
15 }