@artifak/pxtorem
v1.0.1
Published
A utility function to convert PX values to REM.
Downloads
2
Readme
@artifak/pxtorem
A utility function to convert px values to rem.
Installation
Yarn
yarn add @artifak/pxtorem
NPM
npm install @artifak/pxtorem
Usage
import { pxToRem } from 'artifak';
import styled from 'styled-components';
export const Container = styled.div`
margin: 0 auto;
width: 100%;
background: #000;
font-size: ${pxToRem('48px')};
`;