postcss-no-important
v10.0.7
Published
PostCSS plugin for delete declarations !important
Downloads
322
Maintainers
Readme
PostCSS No Important
PostCSS plugin for delete declarations !important.
.foo {
/* Input example */
background-color: #ccc !important;
}
.foo {
/* Output example */
background-color: #ccc;
}
Installation
pnpm add -D postcss postcss-no-important
Usage
postcss([ require('postcss-no-important') ])
See PostCSS docs for examples for your environment.