compass-vertical-rhythm
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/compass-vertical-rhythm package

1.4.5 • Public • Published

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>
  }
});

Package Sidebar

Install

npm i compass-vertical-rhythm

Weekly Downloads

8,020

Version

1.4.5

License

MIT

Unpacked Size

567 kB

Total Files

19

Last publish

Collaborators

  • kylemathews