fela-plugin-fullscreen-prefixer

Fela plugin to add :fullscreen prefixes

Usage no npm install needed!

<script type="module">
  import felaPluginFullscreenPrefixer from 'https://cdn.skypack.dev/fela-plugin-fullscreen-prefixer';
</script>

README

fela-plugin-fullscreen-prefixer

npm version npm downloads Bundlephobia

Adds prefixes to :fullscreen pseudo class.

Installation

yarn add fela-plugin-fullscreen-prefixer

You may alternatively use npm i --save fela-plugin-fullscreen-prefixer.

Usage

Make sure to read the documentation on how to use plugins.

import { createRenderer } from 'fela'
import fullscreenPrefixer from 'fela-plugin-fullscreen-prefixer'

const renderer = createRenderer({
  plugins: [fullscreenPrefixer()],
})

Example

Input

{
  color: 'red',
  ':fullscreen': {
    color: 'green'
  }
}

Output

{
  color: 'red',
  ':-webkit-full-screen': {
    color: 'green',
  },
  ':-moz-full-screen': {
    color: 'green',
  },
  ':-ms-fullscreen': {
    color: 'green',
  },
  ':full-screen': {
    color: 'green',
  },
  ':fullscreen': {
    color: 'green',
  },
}

License

Fela is licensed under the MIT License.
Documentation is licensed under Creative Common License.
Created with ♥ by @robinweser and all the great contributors.