postcss-line-height-px-to-unitless
v0.2.1
Published
postcss plugin to convert a line-height value with px to a unitless value
Downloads
265
Maintainers
Readme
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