Skip to content

Instantly share code, notes, and snippets.

View amadeuszblanik's full-sized avatar
👨‍💻
Working remotely

Amadeus Blanik amadeuszblanik

👨‍💻
Working remotely
View GitHub Profile
@amadeuszblanik
amadeuszblanik / index.js
Last active November 4, 2019 09:24
Vieport vh trick
// First we get the viewport height and we multiple it by 1% to get a value for a vh unit
const vh = window.innerHeight * 0.01;
// Then we set the value in the --vh custom property to the root of the document
document.documentElement.style.setProperty('--vh', `${vh}px`);