utils.js 161 B

12345
  1. export function calculateViewportHeightUnit () {
  2. const vh = window.innerHeight * 0.01;
  3. document.documentElement.style.setProperty('--vh', `${vh}px`);
  4. }