README
PostCSS Importanter
PostCSS plugin that adds !important to all style declarations
.foo {
color: red;
}
.foo {
color: red !important;
}
Usage
postcss([require('postcss-importanter')]);
PostCSS plugin that adds !important to all style declarations
<script type="module">
import postcssImportanter from 'https://cdn.skypack.dev/postcss-importanter';
</script>
PostCSS plugin that adds !important to all style declarations
.foo {
color: red;
}
.foo {
color: red !important;
}
postcss([require('postcss-importanter')]);