7 lines
No EOL
239 B
JavaScript
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);
|
|
} |