frigate/web/src/utils/windowUtils.ts
2022-03-11 07:49:06 -06:00

4 lines
144 B
TypeScript

export const convertRemToPixels = (rem: number): number => {
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
};