erynwells.me/assets/scripts/sketch-utils.js

7 lines
239 B
JavaScript
Raw Normal View History

2022-08-18 20:22:01 -07:00
function getInlineSketchWidth() {
return getComputedStyle(document.documentElement).getPropertyValue("--body-width");
}
function convertRemToPx(rem) {
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
}