mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
export function remToPx(remValue: number) {
|
|
let rootFontSize =
|
|
typeof window === "undefined"
|
|
? 16
|
|
: parseFloat(window.getComputedStyle(document.documentElement).fontSize);
|
|
|
|
return remValue * rootFontSize;
|
|
}
|