compass-vertical-rhythm

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

MIT 10 个版本
安装
npm install compass-vertical-rhythm
yarn add compass-vertical-rhythm
pnpm add compass-vertical-rhythm
bun add compass-vertical-rhythm
README

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>
  }
});
版本列表
1.4.5 2018-04-27
1.4.4 2018-04-27
1.4.3 2018-04-24
1.4.0 2018-01-21
1.3.1 2016-08-18
1.3.0 2016-08-16
1.2.1 2016-06-28
1.2.0 2015-03-07
1.1.0 2015-03-05
1.0.0 2015-02-11