Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

baseunit

jondashkyle17ISC1.0.3

Helpful unit

dom, interface

readme

baseUnit

DOM module to replicate the vmin/vmax CSS unit. Take a look at an example.

Example

I commonly use this to set the base font-size on HTML in conjunction with rem units in my CSS. Here's an example of the JS:

` var baseUnit = require('baseunit') var head = document.getElementsByTagName('html')[0]

function setUnit () { var size = baseUnit() head.style.fontSize = size + '%' }

setUnit() window.addEventListener('resize', setUnit, false)