mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
export function remToPx(remValue: number) {
|
|
const rootFontSize =
|
|
typeof window === "undefined"
|
|
? 16
|
|
: Number.parseFloat(
|
|
window.getComputedStyle(document.documentElement).fontSize,
|
|
);
|
|
|
|
return remValue * rootFontSize;
|
|
}
|