Skip to content

Instantly share code, notes, and snippets.

@elishaterada
Last active August 25, 2018 07:16
Show Gist options
  • Select an option

  • Save elishaterada/ef2e25670c0c97038886ba432ebf967e to your computer and use it in GitHub Desktop.

Select an option

Save elishaterada/ef2e25670c0c97038886ba432ebf967e to your computer and use it in GitHub Desktop.
Pixels to REM value
const baseFontSize = 16;
const pxToRem = (px) => {
const value = px / baseFontSize;
return `${value}rem`;
};
export default pxToRem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment