Skip to content

Instantly share code, notes, and snippets.

@chadspencer
Last active September 25, 2020 19:13
Show Gist options
  • Save chadspencer/3178805a2acac2ed11b038097f64403a to your computer and use it in GitHub Desktop.
Save chadspencer/3178805a2acac2ed11b038097f64403a to your computer and use it in GitHub Desktop.
getHeaderHeight() {
const element = this.refWrapper.current.querySelector('th');
const height = element.offsetHeight;
this.refWrapper.current.style.setProperty('--header-height', height + 'px');
};
onResize() {
getHeaderHeight();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment