diff --git a/src/components/preview-box.js b/src/components/preview-box.js index 805c6d7..84f0a0c 100644 --- a/src/components/preview-box.js +++ b/src/components/preview-box.js @@ -1,4 +1,4 @@ -import { html, LitElement } from 'lit'; +import { css, html, LitElement } from 'lit'; import pillarbox from '@srgssr/pillarbox-web'; /** @@ -22,6 +22,13 @@ class PreviewBox extends LitElement { type: { type: String } }; + static styles = css` + .player-container { + width: 100%; + height: 100%; + } + `; + constructor() { super(); this.src = 'urn:rts:video:14318206'; @@ -29,12 +36,15 @@ class PreviewBox extends LitElement { } render() { + // TODO Remove the player container once this is resolved: https://github.com/videojs/video.js/pull/8679 return html` - +
+ +
`; }