mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-28 21:36:37 +00:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
export function remToPx(remValue) {
|
|
let rootFontSize =
|
|
typeof window === 'undefined'
|
|
? 16
|
|
: parseFloat(window.getComputedStyle(document.documentElement).fontSize)
|
|
|
|
return parseFloat(remValue) * rootFontSize
|
|
}
|