In tachyons line-height properties are specified as numbers eg. .lh-copy { line-height: 1.5; } which on the web means that the resulting line height should be 1.5 * font-size but the problem is that React Native doesn't work this way, it just interprets 1.5 as px.
In tachyons line-height properties are specified as numbers eg.
.lh-copy { line-height: 1.5; }which on the web means that the resulting line height should be 1.5 * font-size but the problem is that React Native doesn't work this way, it just interprets 1.5 as px.