PostCSS plugin for converting px line heights to unitless line heights
.foo {
line-height: 24px;
}
.foo {
line-height: 1.5;
}
postcss([ require('postcss-line-height') ])
See PostCSS docs for examples for your environment.
{
baseFontSize: 16
}