UNPKG

@viget/tailwindcss-plugins

Version:

A collection of custom plugins for Tailwind CSS.

7 lines (5 loc) 206 B
const rem = (px) => `${px / 16}rem` const remPair = (px) => ({ [px]: rem(px) }) const em = (px) => `${px / 16}em` const pxPair = (px) => ({ [px]: `${px}px` }) module.exports = { rem, remPair, em, pxPair }