postcss-v-important
v1.0.0
Published
PostCSS plugin for very important css
Downloads
18
Maintainers
Readme
PostCSS Very Important
PostCSS plugin for very important css.
Usage
body {
color: red;
}
body {
color: blue !vimportant;
}
body {
color: blue !vvvvvvvvvvvvvimportant;
}
body {
color: green !important;
}postcss([ require('postcss-v-important') ])Outputs...
body {
color: red;
}
:root body {
color: blue !important;
}
:root:root:root:root:root:root:root:root:root:root:root:root:root body {
color: orange !important;
}
body {
color: green !important;
}
