Skip to content

Instantly share code, notes, and snippets.

@jongacnik
Created April 27, 2018 02:24
Show Gist options
  • Save jongacnik/482eebaa00caf58612bd7e93665dd55a to your computer and use it in GitHub Desktop.
Save jongacnik/482eebaa00caf58612bd7e93665dd55a to your computer and use it in GitHub Desktop.
var html = require('choo/html')
module.exports = function (state, emitter) {
var styletag = html`<style></style>`
document.head.appendChild(styletag)
function addStyle () {
styletag.innerHTML = `.vh{height:${window.innerHeight}px}`
}
addStyle()
window.addEventListener('resize', addStyle)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment