rem.js 273 Bytes
Newer Older
sin's avatar
sin committed
1 2 3 4 5 6 7 8 9 10
(function(d, w) {
    const doc = d.documentElement;
    function rem() {
      const width = Math.min(doc.getBoundingClientRect().width, 768);
      doc.style.fontSize = width / 7.5 + 'px';
    }
    rem();
    w.addEventListener('resize', rem);
  })(document, window);