1.0.0 • Published 6 years ago

postcss-v-important v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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;
}