erynwells.me/assets/scripts/sketch-utils.js
Eryn Wells 94ea8068c9 Move a bunch of scripts and CSS to assets so they can be processed with Hugo Pipes
Use Pipes to fingerprint and add SLI information to <script> and <link> tags.
2022-11-08 08:55:24 -08:00

7 lines
No EOL
239 B
JavaScript

function getInlineSketchWidth() {
return getComputedStyle(document.documentElement).getPropertyValue("--body-width");
}
function convertRemToPx(rem) {
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
}