Home

tailwind-ctp-intellisense @84e3bf4b3a81c3fb659bd58e28b95c9252cc0ee1 - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / packages / tailwindcss-language-service / src / util / remToPx.ts
- raw
1
2
3
4
5
6
7
8
export function remToPx(
  value: string,
  rootSize: number = 16
): string | undefined {
  return /^-?[0-9.]+rem$/.test(value)
    ? `${parseFloat(value.substr(0, value.length - 3)) * rootSize}px`
    : undefined
}