postcss-line-height-px-to-unitless

Postcss plugin to convert a line-height value with px to a unitless value.

Downloads
228
Stars
5
Committers
1

postcss-line-height-px-to-unitless

Postcss plugin to convert a line-height value with px to a unitless value.

// before

a {
  font-size: 16px;
  line-height: 26px;
}



// after

a {
  font-size: 16px;
  line-height: 1.63;
}

Install

$ npm i postcss-line-height-px-to-unitless

Usage

postcss([
    require('postcss-line-height-px-to-unitless')(),
    ...
])

License

MIT