erynwells.me/static/scripts/sketch-utils.js
2022-08-18 20:22:01 -07: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);
}