compass-vertical-rhythm
A port-in-progress of the Compass vertical rhythm library
Last updated 7 years ago by kylemathews .
MIT · Repository · Bugs · Original npm
$ cnpm install compass-vertical-rhythm 
SYNC missed versions from official npm registry.

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

Current Tags

  • 1.4.5                                ...           latest (7 years ago)

1 Versions

  • 1.4.5                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (3)
Dev Dependencies (7)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org