UNPKG

@aidenlx/player

Version:

Headless web components that make integrating media on the a web a breeze.

18 lines (14 loc) 246 B
import { css } from 'lit'; export const mediaUiElementStyles = css` :host { display: block; contain: content; pointer-events: none; } :host([hidden]) { display: none; } ::slotted(*) { pointer-events: auto; } `;