compass-vertical-rhythm

v1.4.5
A port-in-progress of the Compass vertical rhythm library
sass compass vertical-rhythm css typography

compass-vertical-rhythm

A port-in-progress of the Compass vertical rhythm library.

Only the rhythm function has been ported atm.

Install

npm install compass-vertical-rhythm

Usage

var VerticalRhythm = require('compass-vertical-rhythm');

var rhythm = VerticalRhythm({baseFontSize: '24px', baseLineHeight: 1.5}).rhythm;

rhythm(1);
// ---> 1.25rem

rhythm(0.5);
// ---> 0.625rem

rhythm(0.25);
// ---> 0.3125rem

// Use it for React inline styles.
React.createClass({
  render: function() {
    <div style={{margin: rhythm(1)}}>
      Hello world
    </div>
  }
});
npm i compass-vertical-rhythm

Metadata

  • MIT
  • Whatever
  • Kyle Mathews
  • released 4/27/2018

Downloads

Maintainers