kazutab's picture
Upload folder using huggingface_hub (part 8)
ef6e870 verified
Raw
History Blame Contribute Delete
271 Bytes
/**
* Converts a rem CSS value to pixels based on the document root font size.
*/
export function remToPx(rem: string): number {
const val = parseFloat(rem);
const fontSize = parseFloat(getComputedStyle(document.documentElement).fontSize);
return val * fontSize;
}