An open API service indexing awesome lists of open source software.

https://github.com/komachi/postcss-dialog-polyfill

PostCSS plugin which add selector needed by dialog-polyfill
https://github.com/komachi/postcss-dialog-polyfill

postcss-plugins

Last synced: 12 months ago
JSON representation

PostCSS plugin which add selector needed by dialog-polyfill

Awesome Lists containing this project

README

          

# postcss-dialog-polyfill

>PostCSS plugin which add selector needed by [dialog-polyfill](https://github.com/GoogleChrome/dialog-polyfill)

```css
/* Input */
.test1::backdrop {
background-color: #fff;
}
```

```css
/* Output */
.test1::backdrop, .test1 + .backdrop {
background-color: #fff;
}
```

## Installation

```
npm i postcss postcss-dialog-polyfill --save-dev
```

## Usage

Check out [PostCSS documentation](https://github.com/postcss/postcss#usage) on how to use PostCSS plugins.