mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-22 13:39:39 -05:00
5c265aacb9
Co-authored-by: ShubhamPalriwala <spalriwalau@gmail.com>
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;
|
|
}
|